HomeSort by relevance Sort by last modified time
    Searched defs:linbuf (Results 1 - 4 of 4) sorted by null

  /onnv/onnv-gate/usr/src/cmd/csh/
sh.print.c 81 char linbuf[128]; variable
82 char *linp = linbuf;
107 if (c == '\n' || linp >= &linbuf[sizeof (linbuf) - 1 - MB_CUR_MAX]) {
135 if (linp >= &linbuf[sizeof (linbuf) - 1 - MB_CUR_MAX]) {
162 if (c == '\n' || linp >= &linbuf[sizeof (linbuf) - 2]) {
183 linp = linbuf;
192 if (linp == linbuf) {
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/in.ftpd/
hostacc.c 51 static char linbuf[MAXLEN]; /* Buffer to hold one line of config-file */ variable
173 while (fgets(linbuf, MAXLEN, ptFp) != NULL) {
177 for (pcBegin = linbuf;
182 if ((pcEnd = strchr(linbuf, '#')) != NULL)
  /onnv/onnv-gate/usr/src/cmd/csplit/
csplit.c 60 char linbuf[LINSIZ]; /* Input line buffer */ variable
319 if ((sptr = strrchr(linbuf, '\n')) != NULL)
321 if (step(linbuf, expr)) {
340 (void) fputs(linbuf, outfile);
408 * The line is put into linbuf and may not be larger than LINSIZ.
419 ret = fgets(linbuf, LINSIZ, infile);
  /onnv/onnv-gate/usr/src/cmd/man/src/
getNAME.c 127 char linbuf[BUFSIZ]; local
142 if (fgets(linbuf, sizeof (linbuf), stdin) == NULL)
144 if (linbuf[0] != '.')
146 if (linbuf[1] == 'S' && linbuf[2] == 'H')
148 if (linbuf[1] == 's' && linbuf[2] == 'h')
157 if (fgets(linbuf, sizeof (linbuf), stdin) == NULL
    [all...]

Completed in 420 milliseconds