URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [newlib/] [newlib/] [libc/] [stdlib/] [strdup.c] - Rev 1774
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdlib.h> #include <string.h> char * _DEFUN (strdup, (str), _CONST char *str) { size_t len = strlen (str) + 1; char *copy = malloc (len); if (copy) { memcpy (copy, str, len); } return copy; }
Go to most recent revision | Compare with Previous | Blame | View Log