Files
libucore/src/ucore_strtolower.c
T
2012-10-29 23:07:32 +01:00

13 lines
150 B
C

#include <ctype.h>
#include "ucore_string.h"
void
uc_str_tolower(char *s)
{
while (*s) {
*s = tolower((unsigned char)*s);
s++;
}
}