mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
28 lines
442 B
C++
28 lines
442 B
C++
#include <ctype.h>
|
|
#include <string.h>
|
|
|
|
int ispunct(int c)
|
|
{
|
|
const char* punctuation_characters = "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~";
|
|
return !!strchr(punctuation_characters, c);
|
|
}
|
|
|
|
int isprint(int c)
|
|
{
|
|
return c >= 0x20 && c != 0x7f;
|
|
}
|
|
|
|
int isalnum(int c)
|
|
{
|
|
return isalpha(c) || isdigit(c);
|
|
}
|
|
|
|
int isalpha(int c)
|
|
{
|
|
return isupper(c) || islower(c);
|
|
}
|
|
|
|
int iscntrl(int c)
|
|
{
|
|
return (c >= 0 && c <= 0x1f) || c == 0x7f;
|
|
}
|