1
0
mirror of https://github.com/UzixLS/KernelEx.git synced 2025-07-18 23:11:19 +03:00
Files
KernelEx/kexcrt/ctype/ctypefunc.h
2018-11-03 16:21:13 +03:00

14 lines
207 B
C
Executable File

/*
* ctype/ctype.h
*
* Common header for out-of-line ctype functions
*/
#define __CTYPE_NO_INLINE
#include "ctypes.h"
#define CTYPEFUNC(X) \
int X(int c) { \
return __ctype_##X(c); \
}