diff options
author | Max Kellermann <max@duempel.org> | 2016-06-10 22:08:13 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2016-06-10 22:08:13 +0200 |
commit | e4c7e343c81fe1a847dc90cf20e9cd249ed4e353 (patch) | |
tree | 0ed05c542700d8da0195fd689778cca98de8940d /src/util | |
parent | 6b75be183d5f05013db1ae995b7731774d41585f (diff) |
util/StringUtil: use CamelCase
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/StringUtil.cxx | 2 | ||||
-rw-r--r-- | src/util/StringUtil.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/util/StringUtil.cxx b/src/util/StringUtil.cxx index 62994bc18..5c2ec0e5a 100644 --- a/src/util/StringUtil.cxx +++ b/src/util/StringUtil.cxx @@ -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); diff --git a/src/util/StringUtil.hxx b/src/util/StringUtil.hxx index 743626879..0a33b7971 100644 --- a/src/util/StringUtil.hxx +++ b/src/util/StringUtil.hxx @@ -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. |