1
0
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:
UzixLS
2018-11-03 16:18:57 +03:00
commit d4e0420295
295 changed files with 28034 additions and 0 deletions

13
kexcrt/ctype/ctypefunc.h Normal file
View 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
View File

@ -0,0 +1,2 @@
#include "ctypefunc.h"
CTYPEFUNC(isalnum)

2
kexcrt/ctype/isalpha.c Normal file
View File

@ -0,0 +1,2 @@
#include "ctypefunc.h"
CTYPEFUNC(isalpha)

2
kexcrt/ctype/isascii.c Normal file
View File

@ -0,0 +1,2 @@
#include "ctypefunc.h"
CTYPEFUNC(isascii)

2
kexcrt/ctype/isblank.c Normal file
View File

@ -0,0 +1,2 @@
#include "ctypefunc.h"
CTYPEFUNC(isblank)

2
kexcrt/ctype/iscntrl.c Normal file
View File

@ -0,0 +1,2 @@
#include "ctypefunc.h"
CTYPEFUNC(iscntrl)

2
kexcrt/ctype/isdigit.c Normal file
View File

@ -0,0 +1,2 @@
#include "ctypefunc.h"
CTYPEFUNC(isdigit)

2
kexcrt/ctype/isgraph.c Normal file
View File

@ -0,0 +1,2 @@
#include "ctypefunc.h"
CTYPEFUNC(isgraph)

2
kexcrt/ctype/islower.c Normal file
View File

@ -0,0 +1,2 @@
#include "ctypefunc.h"
CTYPEFUNC(islower)

2
kexcrt/ctype/isprint.c Normal file
View File

@ -0,0 +1,2 @@
#include "ctypefunc.h"
CTYPEFUNC(isprint)

2
kexcrt/ctype/ispunct.c Normal file
View File

@ -0,0 +1,2 @@
#include "ctypefunc.h"
CTYPEFUNC(ispunct)

2
kexcrt/ctype/isspace.c Normal file
View File

@ -0,0 +1,2 @@
#include "ctypefunc.h"
CTYPEFUNC(isspace)

2
kexcrt/ctype/isupper.c Normal file
View File

@ -0,0 +1,2 @@
#include "ctypefunc.h"
CTYPEFUNC(isupper)

2
kexcrt/ctype/isxdigit.c Normal file
View File

@ -0,0 +1,2 @@
#include "ctypefunc.h"
CTYPEFUNC(isxdigit)

2
kexcrt/ctype/tolower.c Normal file
View File

@ -0,0 +1,2 @@
#include "ctypefunc.h"
CTYPEFUNC(tolower)

2
kexcrt/ctype/toupper.c Normal file
View File

@ -0,0 +1,2 @@
#include "ctypefunc.h"
CTYPEFUNC(toupper)