ref: a600cca5ff367ca7e7c64a14a8e87ba376780f6d dir: /lib9/strdup.c/
#include "lib9.h" char* strdup(const char *s) { char *os; os = malloc(strlen(s) + 1); if(os == 0) return 0; return strcpy(os, s); }