strlcat() is now Curl_strlcat() instead to prevent collisions when used with

other libs
This commit is contained in:
Daniel Stenberg 2001-05-18 10:02:44 +00:00
parent 9e8615ae1d
commit 6c50d2ee7d
1 changed files with 1 additions and 1 deletions

View File

@ -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;