forked from e16/e16
1
0
Fork 0

Trivial prototype change (Estrndup).

SVN revision: 27969
This commit is contained in:
Kim Woelders 2007-01-14 17:27:01 +00:00
parent fcbbd6e927
commit 43865f59f4
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ Estrdup(const char *s)
}
char *
Estrndup(const char *s, int n)
Estrndup(const char *s, size_t n)
{
#if USE_LIBC_STRNDUP
if (s)

View File

@ -54,7 +54,7 @@
char *Estrtrim(char *s);
char *Estrdup(const char *s);
char *Estrndup(const char *s, int n);
char *Estrndup(const char *s, size_t n);
char *Estrdupcat2(char *ss, const char *s1, const char *s2);
char **StrlistDup(char **lst, int num);