1
0

ispunct_l.c 77 B

123456
  1. #include <ctype.h>
  2. int ispunct_l(int c, locale_t l)
  3. {
  4. return ispunct(c);
  5. }