#include "src/main.h"
#include <string.h>
Go to the source code of this file.
Functions | |
char * | egg_strdup (const char *s) |
char* egg_strdup | ( | const char * | s | ) |
Definition at line 27 of file strdup.c.
References egg_memcpy(), and nmalloc.
Referenced by n_strdup().
00028 { 00029 char *d; 00030 size_t l = strlen(s)+1; 00031 d = nmalloc(l); 00032 return egg_memcpy(d, s, l); 00033 }