CoolPotOS/apps/include/ctype.h

24 lines
423 B
C
Raw Normal View History

2024-09-01 14:56:38 +08:00
#ifndef CRASHPOWEROS_CTYPE_H
#define CRASHPOWEROS_CTYPE_H
2024-09-01 16:43:58 +08:00
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <stdarg.h>
2024-09-01 14:56:38 +08:00
int ispunct(char ch);
char toupper(char ch);
char tolower(char ch);
int iscsymf(int ch);
int isascll(char ch);
int iscntrl(char ch);
int isxdigit(int c);
int isspace(int c);
int isdigit(int c);
int isalpha(int c);
int isupper(int c);
int isprint(int c);
int isgraph(int c);
#endif