Help for this page
char* my_crappy_strdup( const char* str ) { char* s = malloc(strlen(str)+1); memcpy( s, str, strlen(str)+1 ); return s; }
void my_crappy_free( char* str ) { free(s); }