aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-02-28 12:17:56 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-02-28 12:17:56 +0000
commit60e015d0c191b51e5766ebeb98c420ca0111e098 (patch)
treeee9e971e8b610cc3013a0b331520dc6c2825028c /include
parent7e049fca6198d90912cb519de8178827c4b49601 (diff)
Removed the defines for strequal() and strnequal().
Diffstat (limited to 'include')
-rw-r--r--include/curl/curl.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h
index dd05134bb..e9c8c1dbd 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -696,8 +696,6 @@ typedef enum {
*/
extern int (curl_strequal)(const char *s1, const char *s2);
extern int (curl_strnequal)(const char *s1, const char *s2, size_t n);
-#define strequal(a,b) curl_strequal(a,b)
-#define strnequal(a,b,c) curl_strnequal(a,b,c)
/* DEPRECATED function to build formdata */
int curl_formparse(char *, struct curl_httppost **,