support translation for getopt error messages
[musl] / src / ctype / ispunct.c
1 #include <ctype.h>
2 #include "libc.h"
3
4 int ispunct(int c)
5 {
6         return isgraph(c) && !isalnum(c);
7 }
8
9 int __ispunct_l(int c, locale_t l)
10 {
11         return ispunct(c);
12 }
13
14 weak_alias(__ispunct_l, ispunct_l);