From bd8070085f9f8516baa340e55a62e88e0cb5b063 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 4 Sep 2017 09:38:19 +0200 Subject: [PATCH] curl.h: make the curl_strequal() protos use the same style ... as the other functions. Makes it easier to machine-parse! --- include/curl/curl.h | 4 ++-- 1 file 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. */