Searched refs:inputline (Results 1 - 4 of 4) sorted by relevance

/freebsd-9.3-release/contrib/groff/src/preproc/grn/
H A Dmain.cpp205 char inputline[MAXINLINE]; /* spot to filter through the file */ variable
206 char *c1 = inputline; /* c1, c2, and c3 will be used to */
207 char *c2 = inputline + 1; /* hunt for lines that begin with */
208 char *c3 = inputline + 2; /* ".GS" by looking individually */
209 char *c4 = inputline + 3; /* needed for compatibility mode */
326 fputs(inputline, stdout);
328 fputs(inputline, stdout);
396 | Results: A line of input is read into `inputline'.
407 if (fgets(inputline, MAXINLINE, fp) == NULL)
409 if (strchr(inputline, '\
[all...]
/freebsd-9.3-release/sbin/gvinum/
H A Dgvinum.c96 char buffer[BUFSIZ], *inputline, *token[GV_MAXARGS]; local
111 inputline = readline("gvinum -> ");
112 if (inputline == NULL) {
119 } else if (*inputline) {
120 add_history(inputline);
121 strcpy(buffer, inputline);
122 free(inputline);
/freebsd-9.3-release/contrib/tcsh/
H A Dtw.parse.c160 tenematch(Char *inputline, int num_read, COMMAND command) argument
173 str_end = &inputline[num_read];
176 word_start = inputline;
178 for (cp = inputline; cp < str_end; cp++) {
791 starting_a_command(Char *wordstart, Char *inputline) argument
803 ptr >= inputline;
821 for (count = 0; wordstart >= inputline; wordstart--) {
841 if (wordstart > inputline)
844 while (wordstart > inputline &&
851 while (wordstart > inputline
[all...]
H A Dsh.file.c687 tenex(Char *inputline, size_t inputline_size) argument
704 Strcpy(inputline, str2short(tinputline));/*FIXBUF*/
705 num_read = Strlen(inputline);
706 last_Char = CTL_ESC(ASC(inputline[num_read - 1]) & ASCII);
713 str_end = &inputline[num_read];
718 * Find LAST occurence of a delimiter in the inputline. The word start
721 for (word_start = str_end; word_start > inputline; --word_start)
724 space_left = inputline_size - (word_start - inputline) - 1;
740 if (Strchr(inputline, '\t')) { /* tab Char in input line? */
748 pushback(inputline);
[all...]

Completed in 77 milliseconds