1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

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

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; char *d = dst;
const char *s = src; const char *s = src;