diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-11-26 14:20:18 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-11-26 16:51:23 +0100 |
commit | 230bb3e278877a8e99179f4df1893ee408d7baf5 (patch) | |
tree | bc907b31ad3430510ce0b414d40b8ae2e99a1bff /docs/libcurl/curl_strequal.3 | |
parent | ff1c172e865640412aa081c6cf6112988e537c59 (diff) | |
download | curl-230bb3e278877a8e99179f4df1893ee408d7baf5.tar.gz |
docs: consistent manpage SYNOPSIS
Make all libcurl related options use .nf (no fill) for the SYNOPSIS
section - for consistent look. roffit then renders that section using
<pre> (monospace font) in html for the website.
Extended manpage-syntax (test 1173) with a basic check for it.
Closes #8062
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 |