1
0
Fork 0
forked from len0rd/rockbox

Add strlcat to core to match strlcpy (also add to plugin api). Some uses of strcat could probably do with being changed to this.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24141 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Torne Wuff 2010-01-02 13:31:46 +00:00
parent 7746f94496
commit 6e9af8bd44
5 changed files with 61 additions and 1 deletions

View file

@ -42,6 +42,7 @@ char *_EXFUN(strstr,(const char *, const char *));
char *_EXFUN(strcasestr,(const char *, const char *));
size_t strlcpy(char *dst, const char *src, size_t siz);
size_t strlcat(char *dst, const char *src, size_t siz);
#ifndef _REENT_ONLY
char *_EXFUN(strtok,(char *, const char *));