HomeSort by: relevance | last modified time | path
    Searched defs:outc (Results 1 - 5 of 5) sorted by relevancy

  /src/usr.bin/tset/
misc.c 62 outc(int c) function
  /src/usr.bin/unvis/
unvis.c 112 char outc; local
117 switch(ret = unvis(&outc, (char)c, &state, eflags)) {
119 (void)putchar(outc);
122 (void)putchar(outc);
136 if (unvis(&outc, (char)0, &state, eflags | UNVIS_END) == UNVIS_VALID)
137 (void)putchar(outc);
  /src/bin/sh/
output.h 103 #define outc(c, file) (--(file)->nleft < 0? (emptyoutbuf(file), *(file)->nextc++ = (c)) : (*(file)->nextc++ = (c))) macro
104 #define out1c(c) outc(c, out1)
105 #define out2c(c) outc(c, out2)
106 #define outxc(c) outc(c, outx)
  /src/usr.bin/ul/
ul.c 86 static void outc(int);
288 outc(' ');
291 outc(obuf[i].c_char);
420 outc(int c) function
  /src/usr.bin/ftp/
ftp.c 622 ssize_t inc, outc; local
639 inc = outc = 0;
656 outc = write(outfd, bufp, inc);
657 if (outc < 0) {
663 inc -= outc;
664 bufp += outc;
696 if (outc == -1)

Completed in 18 milliseconds