13 lines
150 B
C
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++;
|
|
}
|
|
}
|
|
|