
cherokee at cherokee-project
Sep 14, 2009, 3:33 AM
Post #1 of 1
(216 views)
Permalink
|
|
[3660] cherokee/trunk/cherokee/util.h: Adds "strlcat" declaration.
|
|
Revision: 3660 http://svn.cherokee-project.com/changeset/3660 Author: aperez Date: 2009-09-14 12:33:47 +0200 (Mon, 14 Sep 2009) Log Message: ----------- Adds "strlcat" declaration. Modified Paths: -------------- cherokee/trunk/cherokee/util.h Modified: cherokee/trunk/cherokee/util.h =================================================================== --- cherokee/trunk/cherokee/util.h 2009-09-13 23:48:41 UTC (rev 3659) +++ cherokee/trunk/cherokee/util.h 2009-09-14 10:33:47 UTC (rev 3660) @@ -89,6 +89,9 @@ #ifndef HAVE_STRCASESTR char *strcasestr (register char *s, register char *find); #endif +#ifndef HAVE_STRLCAT +size_t strlcat (char *dst, const char *src, size_t siz); +#endif #ifndef HAVE_MALLOC void *rpl_malloc (size_t n); #endif
|