Lines Matching refs:input
134 #define NOSTDIN "unable to create a standard input file for \
196 char *input; /* ptr to stdin */
1241 /* see if there is any standard input */
1243 e->of.ct.input = xmalloc(strlen(line)-cursor + 1);
1244 (void) strcpy(e->of.ct.input, line + cursor + 1);
1245 for (i = 0; i < strlen(e->of.ct.input); i++) {
1246 if (e->of.ct.input[i] == '%')
1247 e->of.ct.input[i] = '\n';
1250 e->of.ct.input = NULL;
2150 if (e2->of.ct.input != NULL)
2151 free(e2->of.ct.input);
2461 /* check for standard input to command */
2462 if (e->of.ct.input != NULL) {
2476 if ((fwrite(e->of.ct.input, sizeof (char),
2477 strlen(e->of.ct.input), fptr)) !=
2478 strlen(e->of.ct.input)) {