]> granicus.if.org Git - curl/commitdiff
curl.h: make the curl_strequal() protos use the same style
authorDaniel Stenberg <daniel@haxx.se>
Mon, 4 Sep 2017 07:38:19 +0000 (09:38 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 4 Sep 2017 07:38:19 +0000 (09:38 +0200)
... as the other functions. Makes it easier to machine-parse!

include/curl/curl.h

index c036a44eca2f2c3075d6776d96f4472e43f3e1d4..d3583ba6c22cd72b373ffcf12f15965861e7bc9c 100644 (file)
@@ -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. */