mirror of
https://github.com/UzixLS/KernelEx.git
synced 2025-07-19 07:21:20 +03:00
import KernelEx-4.0-RC1
This commit is contained in:
13
kexcrt/ctype/ctypefunc.h
Normal file
13
kexcrt/ctype/ctypefunc.h
Normal file
@ -0,0 +1,13 @@
|
||||
/*
|
||||
* 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); \
|
||||
}
|
2
kexcrt/ctype/isalnum.c
Normal file
2
kexcrt/ctype/isalnum.c
Normal file
@ -0,0 +1,2 @@
|
||||
#include "ctypefunc.h"
|
||||
CTYPEFUNC(isalnum)
|
2
kexcrt/ctype/isalpha.c
Normal file
2
kexcrt/ctype/isalpha.c
Normal file
@ -0,0 +1,2 @@
|
||||
#include "ctypefunc.h"
|
||||
CTYPEFUNC(isalpha)
|
2
kexcrt/ctype/isascii.c
Normal file
2
kexcrt/ctype/isascii.c
Normal file
@ -0,0 +1,2 @@
|
||||
#include "ctypefunc.h"
|
||||
CTYPEFUNC(isascii)
|
2
kexcrt/ctype/isblank.c
Normal file
2
kexcrt/ctype/isblank.c
Normal file
@ -0,0 +1,2 @@
|
||||
#include "ctypefunc.h"
|
||||
CTYPEFUNC(isblank)
|
2
kexcrt/ctype/iscntrl.c
Normal file
2
kexcrt/ctype/iscntrl.c
Normal file
@ -0,0 +1,2 @@
|
||||
#include "ctypefunc.h"
|
||||
CTYPEFUNC(iscntrl)
|
2
kexcrt/ctype/isdigit.c
Normal file
2
kexcrt/ctype/isdigit.c
Normal file
@ -0,0 +1,2 @@
|
||||
#include "ctypefunc.h"
|
||||
CTYPEFUNC(isdigit)
|
2
kexcrt/ctype/isgraph.c
Normal file
2
kexcrt/ctype/isgraph.c
Normal file
@ -0,0 +1,2 @@
|
||||
#include "ctypefunc.h"
|
||||
CTYPEFUNC(isgraph)
|
2
kexcrt/ctype/islower.c
Normal file
2
kexcrt/ctype/islower.c
Normal file
@ -0,0 +1,2 @@
|
||||
#include "ctypefunc.h"
|
||||
CTYPEFUNC(islower)
|
2
kexcrt/ctype/isprint.c
Normal file
2
kexcrt/ctype/isprint.c
Normal file
@ -0,0 +1,2 @@
|
||||
#include "ctypefunc.h"
|
||||
CTYPEFUNC(isprint)
|
2
kexcrt/ctype/ispunct.c
Normal file
2
kexcrt/ctype/ispunct.c
Normal file
@ -0,0 +1,2 @@
|
||||
#include "ctypefunc.h"
|
||||
CTYPEFUNC(ispunct)
|
2
kexcrt/ctype/isspace.c
Normal file
2
kexcrt/ctype/isspace.c
Normal file
@ -0,0 +1,2 @@
|
||||
#include "ctypefunc.h"
|
||||
CTYPEFUNC(isspace)
|
2
kexcrt/ctype/isupper.c
Normal file
2
kexcrt/ctype/isupper.c
Normal file
@ -0,0 +1,2 @@
|
||||
#include "ctypefunc.h"
|
||||
CTYPEFUNC(isupper)
|
2
kexcrt/ctype/isxdigit.c
Normal file
2
kexcrt/ctype/isxdigit.c
Normal file
@ -0,0 +1,2 @@
|
||||
#include "ctypefunc.h"
|
||||
CTYPEFUNC(isxdigit)
|
2
kexcrt/ctype/tolower.c
Normal file
2
kexcrt/ctype/tolower.c
Normal file
@ -0,0 +1,2 @@
|
||||
#include "ctypefunc.h"
|
||||
CTYPEFUNC(tolower)
|
2
kexcrt/ctype/toupper.c
Normal file
2
kexcrt/ctype/toupper.c
Normal file
@ -0,0 +1,2 @@
|
||||
#include "ctypefunc.h"
|
||||
CTYPEFUNC(toupper)
|
Reference in New Issue
Block a user