Remove ucore_ prefix from headers and source files
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
#include <ctype.h>
|
||||
#include "ucore/string.h"
|
||||
|
||||
void
|
||||
uc_str_tolower(char *s)
|
||||
{
|
||||
while (*s) {
|
||||
*s = tolower((unsigned char)*s);
|
||||
s++;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user