ctype_tolower.c 298 B

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