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

14 lines
207 B
C

/*
* 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); \
}