diff -r 5d28dc8f0765 -r 5b97de37aada src/string.c --- a/src/string.c Mon May 14 18:25:20 2018 +0200 +++ b/src/string.c Mon May 14 18:27:23 2018 +0200 @@ -487,7 +487,7 @@ return result; } -int ucx_str_cmp(scstr_t s1, scstr_t s2) { +int ucx_strcmp(scstr_t s1, scstr_t s2) { if (s1.length == s2.length) { return memcmp(s1.ptr, s2.ptr, s1.length); } else if (s1.length > s2.length) { @@ -497,7 +497,7 @@ } } -int ucx_str_casecmp(scstr_t s1, scstr_t s2) { +int ucx_strcasecmp(scstr_t s1, scstr_t s2) { if (s1.length == s2.length) { #ifdef _WIN32 return _strnicmp(s1.ptr, s2.ptr, s1.length);