LibC: Add is*() functions to libc

This commit is contained in:
Bananymous
2023-01-16 19:13:11 +02:00
parent 5122d27f89
commit fd16c1cf58
3 changed files with 88 additions and 0 deletions

21
libc/include/ctype.h Normal file
View File

@@ -0,0 +1,21 @@
#pragma once
#include <sys/cdefs.h>
__BEGIN_DECLS
int isalnum(int);
int isalpha(int);
int isascii(int);
int isblank(int);
int iscntrl(int);
int isdigit(int);
int isgraph(int);
int islower(int);
int isprint(int);
int ispunct(int);
int isspace(int);
int isupper(int);
int isxdigit(int);
__END_DECLS