aboutsummaryrefslogtreecommitdiff
path: root/lib/strequal.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/strequal.h')
-rw-r--r--lib/strequal.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/lib/strequal.h b/lib/strequal.h
index 9901d281e..e4ed39da5 100644
--- a/lib/strequal.h
+++ b/lib/strequal.h
@@ -22,10 +22,14 @@
*
* $Id$
*****************************************************************************/
-int Curl_strequal(const char *first, const char *second);
-int Curl_strnequal(const char *first, const char *second, size_t max);
-#define strequal(a,b) Curl_strequal(a,b)
-#define strnequal(a,b,c) Curl_strnequal(a,b,c)
+/*
+ * These two actually are public functions.
+ */
+int curl_strequal(const char *first, const char *second);
+int curl_strnequal(const char *first, const char *second, size_t max);
+
+#define strequal(a,b) curl_strequal(a,b)
+#define strnequal(a,b,c) curl_strnequal(a,b,c)
#endif