Lines Matching defs:nstr
3535 char *nstr, *tmp;
3545 * init nstr up front, just in case there are no line contents,
3548 if ((nstr = malloc(sizeof(*nstr))) == NULL)
3550 nstr[0] = '\0';
3557 if ((tmp = realloc(nstr,
3560 if (nstr != NULL)
3561 free(nstr);
3565 nstr = tmp;
3566 strcat(nstr, line->string);
3577 field->buffers[0].string = nstr;