mirror of
https://github.com/UzixLS/KernelEx.git
synced 2025-07-18 23:11:19 +03:00
14 lines
207 B
C
Executable File
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); \
|
|
}
|