/* ** Portable, public domain strdup() by Bob Stout */ #include #include char *strdup(const char *string) { char *new; if (NULL != (new = malloc(strlen(string) + 1))) strcpy(new, string); return new; } om/nr_dev.c?h=nds-private-remove' type='application/atom+xml'/>
summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines