diff options
Diffstat (limited to 'docs/libcurl/curl_strequal.3')
-rw-r--r-- | docs/libcurl/curl_strequal.3 | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/docs/libcurl/curl_strequal.3 b/docs/libcurl/curl_strequal.3 index 3067da9a2..48912c154 100644 --- a/docs/libcurl/curl_strequal.3 +++ b/docs/libcurl/curl_strequal.3 @@ -23,11 +23,12 @@ .SH NAME curl_strequal, curl_strnequal - case insensitive string comparisons .SH SYNOPSIS -.B #include <curl/curl.h> -.sp -.BI "int curl_strequal(char *" str1 ", char *" str2 ");" -.sp -.BI "int curl_strnequal(char *" str1 ", char *" str2 ", size_t " len ");" +.nf +#include <curl/curl.h> + +int curl_strequal(char *str1, char *str2); +int curl_strnequal(char *str1, char *str2, size_t length); +.fi .SH DESCRIPTION The .B curl_strequal() @@ -36,7 +37,7 @@ of the characters. It returns a non-zero (TRUE) integer if the strings are identical. .sp The \fBcurl_strnequal()\fP function is similar, except it only compares the -first \fIlen\fP characters of \fIstr1\fP. +first \fIlenght\fP characters of \fIstr1\fP. .sp These functions are provided by libcurl to enable applications to compare strings in a truly portable manner. There are no standard portable case |