diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-09-04 09:38:19 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-09-04 09:38:19 +0200 |
commit | bd8070085f9f8516baa340e55a62e88e0cb5b063 (patch) | |
tree | a2f2f8ab84034adc8632110957ab695a71fa9d6d /include | |
parent | 2e4074c953e96cadc3182454fd437f9a348e37ce (diff) | |
download | curl-bd8070085f9f8516baa340e55a62e88e0cb5b063.tar.gz |
curl.h: make the curl_strequal() protos use the same style
... as the other functions. Makes it easier to machine-parse!
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index c036a44ec..d3583ba6c 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -1969,8 +1969,8 @@ typedef enum { !checksrc! disable SPACEBEFOREPAREN 2 */ -CURL_EXTERN int (curl_strequal)(const char *s1, const char *s2); -CURL_EXTERN int (curl_strnequal)(const char *s1, const char *s2, size_t n); +CURL_EXTERN int curl_strequal(const char *s1, const char *s2); +CURL_EXTERN int curl_strnequal(const char *s1, const char *s2, size_t n); /* Mime/form handling support. */ typedef struct Curl_mime curl_mime; /* Mime context. */ |