Skip to content

Commit

Permalink
Curl_str(n)equal renamed to curl_str(n)equal
Browse files Browse the repository at this point in the history
  • Loading branch information
bagder committed Mar 14, 2001
1 parent b8fe4de commit dbbd206
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/curl/curl.h
Original file line number Diff line number Diff line change
Expand Up @@ -450,10 +450,10 @@ typedef enum {
NOTE: they return TRUE if the strings match *case insensitively*.
*/
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)
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)

/* external form function */
int curl_formparse(char *string,
Expand Down

0 comments on commit dbbd206

Please sign in to comment.