mirror of
https://github.com/curl/curl.git
synced 2026-05-19 16:36:24 +03:00
strlcat() is now Curl_strlcat() instead to prevent collisions when used with
other libs
This commit is contained in:
parent
9e8615ae1d
commit
6c50d2ee7d
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue