util/StringUtil: use CamelCase

This commit is contained in:
Max Kellermann
2016-06-10 22:08:13 +02:00
parent 6b75be183d
commit e4c7e343c8
6 changed files with 13 additions and 13 deletions

View File

@@ -91,7 +91,7 @@ Strip(char *p)
}
bool
string_array_contains(const char *const* haystack, const char *needle)
StringArrayContainsCase(const char *const*haystack, const char *needle)
{
assert(haystack != nullptr);
assert(needle != nullptr);

View File

@@ -104,7 +104,7 @@ Strip(char *p);
*/
gcc_pure
bool
string_array_contains(const char *const* haystack, const char *needle);
StringArrayContainsCase(const char *const*haystack, const char *needle);
/**
* Convert the specified ASCII string (0x00..0x7f) to upper case.