DEBSOURCES
Skip Quicknav
sources / yodl / 4.05.02-1 / root / newstr.c
1234567891011
#include "root.ih" char *new_str(char const *s) { char *ret; if (!(ret = strdup(!s || !*s ? "" : s))) out_of_memory(); return ret; }