1
0
mirror of https://github.com/lammertb/libhttp.git synced 2025-04-22 09:02:50 +03:00
libhttp/doc/api/httplib_url_encode.md
2016-12-17 00:34:25 +01:00

909 B

LibHTTP API Reference

httplib_url_encode( src, dst, des_len );

Parameters

Parameter Type Description
src const char * Input string to encode
dst char * Destination buffer to store the encoded result
dst_len size_t Length of the destination buffer including the terminating NUL

Return Value

Type Description
int The number of characters written in the destination buffer

Description

The function httplib_url_encode() encodes a in input buffer. Both normal URIs and form URIs can be encoded. In the latter case the space character is converted to a + as defined in RFC 1866 in section 8.2.1.

See Also