#include #include "ucore_string.h" void uc_str_toupper(char *s) { while (*s) { *s = toupper((unsigned char)*s); s++; } }