curl.h: make the curl_strequal() protos use the same style

... as the other functions. Makes it easier to machine-parse!
This commit is contained in:
Daniel Stenberg 2017-09-04 09:38:19 +02:00
parent 2e4074c953
commit bd8070085f
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
1 changed files with 2 additions and 2 deletions

View 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. */