mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-29 12:49:08 +00:00
9 lines
190 B
C++
9 lines
190 B
C++
#include <ctype.h>
|
|
#include <string.h>
|
|
|
|
int ispunct(int c)
|
|
{
|
|
const char* punctuation_characters = "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~";
|
|
return !!strchr(punctuation_characters, c);
|
|
}
|