src/util: provide strndup definitions where needed

Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dave Reisner 2011-09-18 16:22:38 -04:00 committed by Dan McGee
parent 07e89c1e5d
commit 83ee9708b1
2 changed files with 44 additions and 0 deletions

View File

@ -48,6 +48,28 @@ static struct options_t {
char delim;
} opts;
#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 struct buffer_t *buffer_new(size_t initial_size)
{
struct buffer_t *buf;

View File

@ -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;