mirror of
https://github.com/Leonmmcoset/cleonos.git
synced 2026-04-24 11:14:01 +00:00
应用程序套件
This commit is contained in:
16
kit/include/ctype.h
Normal file
16
kit/include/ctype.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef CLEONOS_LIBC_CTYPE_H
|
||||
#define CLEONOS_LIBC_CTYPE_H
|
||||
|
||||
int isspace(int ch);
|
||||
int isdigit(int ch);
|
||||
int isalpha(int ch);
|
||||
int isalnum(int ch);
|
||||
int isxdigit(int ch);
|
||||
int isupper(int ch);
|
||||
int islower(int ch);
|
||||
int isprint(int ch);
|
||||
int iscntrl(int ch);
|
||||
int tolower(int ch);
|
||||
int toupper(int ch);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user