diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-09-27 01:09:04 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-09-27 21:55:58 +0200 |
| commit | adb0973bb355b9f7eb27d9842116e43c7f77d261 (patch) | |
| tree | 295eba8a1f2fde6e6d500fbe7b32ac5330d0bbbe /doc/man3/http_encode_url.3 | |
| parent | 0d54bbf08674174c1e7b91ce39984c29b78cf0ba (diff) | |
| download | libweb-adb0973bb355b9f7eb27d9842116e43c7f77d261.tar.gz | |
Add man pages
Diffstat (limited to 'doc/man3/http_encode_url.3')
| -rw-r--r-- | doc/man3/http_encode_url.3 | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/doc/man3/http_encode_url.3 b/doc/man3/http_encode_url.3 new file mode 100644 index 0000000..94bd7f8 --- /dev/null +++ b/doc/man3/http_encode_url.3 @@ -0,0 +1,38 @@ +.TH HTTP_ENCODE_URL 3 2023-09-07 0.1.0 "slweb Library Reference" + +.SH NAME +http_encode_url \- allocates a percent-encoded null-terminated string + +.SH SYNOPSIS +.LP +.nf +#include <slweb/http.h> +.P +char *http_encode_url(const char *\fIurl\fP); +.fi + +.SH DESCRIPTION +The +.IR http_encode_url () +function encodes the null-terminated string given by +.I url +using percent-encoding as defined by RFC 3986. + +.SH RETURN VALUE +On success, a valid pointer to a percent-encoded, null-terminated +string is returned. On failure, a null pointer is returned. + +.SH ERRORS +No errors are defined. + +.SH SEE ALSO +.BR http_decode_url (3), +.BR slweb_http (7). + +.SH COPYRIGHT +Copyright (C) 2023 Xavier Del Campo Romero. +.P +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. |
