Lines Matching defs:text
76 char buf[BUFSIZ], *text;
82 text = NULL;
96 if (asprintf(&text, "%s\n%s\n", left, right) == -1)
106 if (asprintf(&text, "%s\n", left) == -1)
117 if (asprintf(&text, "%s\n", right) == -1)
131 if (text != NULL) {
134 len = strlen(text);
135 if ((size_t)write(fd, text, len) != len) {
142 /* text is no longer used. */
143 free(text);