update case mappings to unicode 12.1.0
[musl.git] / src / ctype / ispunct.c
bloba491d5dc4b04d375fd0f2a3a495f2c147727a204
1 #include <ctype.h>
3 int ispunct(int c)
5 return isgraph(c) && !isalnum(c);
8 int __ispunct_l(int c, locale_t l)
10 return ispunct(c);
13 weak_alias(__ispunct_l, ispunct_l);