/src/usr.bin/tset/ |
misc.c | 62 outc(int c) function in typeref:typename:int
|
/src/usr.bin/unvis/ |
unvis.c | 112 char outc; local in function:process 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 in typeref:typename:void
|
/src/usr.bin/ftp/ |
ftp.c | 614 ssize_t inc, outc; local in function:copy_bytes 631 inc = outc = 0; 648 outc = write(outfd, bufp, inc); 649 if (outc < 0) { 655 inc -= outc; 656 bufp += outc; 688 if (outc == -1)
|