summaryrefslogtreecommitdiffstats
path: root/base/string_util_posix.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/string_util_posix.h')
-rw-r--r--base/string_util_posix.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/base/string_util_posix.h b/base/string_util_posix.h
index 3db654c..f9c3597 100644
--- a/base/string_util_posix.h
+++ b/base/string_util_posix.h
@@ -14,6 +14,10 @@
namespace base {
+inline int strcasecmp(const char* string1, const char* string2) {
+ return ::strcasecmp(string1, string2);
+}
+
inline int strncasecmp(const char* string1, const char* string2, size_t count) {
return ::strncasecmp(string1, string2, count);
}