2023-01-16 19:13:11 +02:00
|
|
|
#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);
|
|
|
|
|
2023-05-10 23:13:56 +03:00
|
|
|
int toupper(int);
|
|
|
|
int tolower(int);
|
|
|
|
|
2023-01-16 19:13:11 +02:00
|
|
|
__END_DECLS
|