Files
libucore/src/strtoupper.c
T
2013-03-06 22:22:04 +01:00

13 lines
150 B
C

#include <ctype.h>
#include "ucore/string.h"
void
uc_str_toupper(char *s)
{
while (*s) {
*s = toupper((unsigned char)*s);
s++;
}
}