ctype_toupper.c 298 B

1234567891011121314
  1. /*
  2. * ctype_toupper.c
  3. */
  4. #include "lub/ctype.h"
  5. #include <ctype.h>
  6. /*--------------------------------------------------------- */
  7. char
  8. lub_ctype_toupper(char c)
  9. {
  10. unsigned char tmp = (unsigned char)c;
  11. return toupper(tmp);
  12. }
  13. /*--------------------------------------------------------- */