towupper_l.c 86 B

123456
  1. #include <wctype.h>
  2. wint_t towupper_l(wint_t c, locale_t l)
  3. {
  4. return towupper(c);
  5. }