mirror of
https://github.com/curl/curl.git
synced 2024-11-27 05:50:21 +08:00
strlcat() is now Curl_strlcat() instead to prevent collisions when used with
other libs
This commit is contained in:
parent
9e8615ae1d
commit
6c50d2ee7d
@ -80,7 +80,7 @@ int curl_strnequal(const char *first, const char *second, size_t max)
|
||||
*
|
||||
*
|
||||
*/
|
||||
size_t strlcat(char *dst, const char *src, size_t siz)
|
||||
size_t Curl_strlcat(char *dst, const char *src, size_t siz)
|
||||
{
|
||||
char *d = dst;
|
||||
const char *s = src;
|
||||
|
Loading…
Reference in New Issue
Block a user