1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-14 07:58:54 +02:00
2013-10-24 18:24:47 +00:00

22 lines
410 B
C

#include <ogg/os_types.h>
#include <sys/types.h>
#include <string.h>
#include <stdlib.h>
char *strdup(const char *inStr)
{
char *outStr = NULL;
if (inStr == NULL) {
return NULL;
}
outStr = _ogg_malloc(strlen(inStr) + 1);
if (outStr != NULL) {
strcpy(outStr, inStr);
}
return outStr;
}