diff options
Diffstat (limited to 'src/util/pactree.c')
-rw-r--r-- | src/util/pactree.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/util/pactree.c b/src/util/pactree.c index 11ca4b9e..09fe1011 100644 --- a/src/util/pactree.c +++ b/src/util/pactree.c @@ -91,6 +91,28 @@ int unique = 0; int searchsyncs = 0; const char *dbpath = DBPATH; +#ifndef HAVE_STRNDUP +/* A quick and dirty implementation derived from glibc */ +static size_t strnlen(const char *s, size_t max) +{ + register const char *p; + for(p = s; *p && max--; ++p); + return (p - s); +} + +char *strndup(const char *s, size_t n) +{ + size_t len = strnlen(s, n); + char *new = (char *) malloc(len + 1); + + if(new == NULL) + return NULL; + + new[len] = '\0'; + return (char *)memcpy(new, s, len); +} +#endif + static char *strtrim(char *str) { char *pch = str; |