projects
/
platform
/
upstream
/
curl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6c50d2e
)
our internal strlcat() is now named Curl_strlcat()
author
Daniel Stenberg
<daniel@haxx.se>
Fri, 18 May 2001 12:03:30 +0000
(12:03 +0000)
committer
Daniel Stenberg
<daniel@haxx.se>
Fri, 18 May 2001 12:03:30 +0000
(12:03 +0000)
lib/strequal.h
patch
|
blob
|
history
diff --git
a/lib/strequal.h
b/lib/strequal.h
index
bbde26f
..
e376db9
100644
(file)
--- a/
lib/strequal.h
+++ b/
lib/strequal.h
@@
-33,7
+33,8
@@
int curl_strnequal(const char *first, const char *second, size_t max);
#define strnequal(a,b,c) curl_strnequal(a,b,c)
#ifndef HAVE_STRLCAT
-size_t strlcat(char *dst, const char *src, size_t siz);
+#define strlcat(x,y,z) Curl_strlcat(x,y,z)
+size_t Curl_strlcat(char *dst, const char *src, size_t siz);
#endif
#endif