- int putc(int, FILE *); ...2 KB (336 words) - 09:14, 26 June 2006
- * is what putc calls when the buffer is full. #define putc(x, p) (--(p)->cnt >= 0 ? *(p)->ptr++ = (x) : _flushbuf((x), p)) ...20 KB (3,096 words) - 00:57, 5 January 2022
- putc(*s, temp); putc(*s, temp); ...20 KB (3,078 words) - 08:07, 5 January 2022
- #define putc(x, p) (--(p)->cnt >= 0 ? *(p)->ptr++ = (x) : _flushbuf((x), p)) #define putchar(x) putc(x, stdout) ...16 KB (2,313 words) - 05:19, 4 January 2022
- #define SYNCLINES() while (pendnls) putc('\n', out), pendnls-- #define OUTPUT(ch, tri) ((tri) ? fprintf(out, "??%c", tri) : putc(ch, out)) ...64 KB (8,325 words) - 01:05, 16 September 2024