DEBSOURCES
Skip Quicknav
sources / icmake / 7.21.01-1 / exec / string / newstring.c
12345678910
#include "string.ih" INTER_ *newstring(char *cp) { INTER_ *ret = malloc(sizeof(INTER_)); ret->count = 1; ret->ls.str = cp; return ret; }