1 /* Copyright (c) 1985 Ceriel J.H. Jacobs */
14 #define putch(ch) if (1) {if (--_ocnt <= 0) flush(); *_optr++ = (ch);} else
20 * Write the output buffer to the screen
27 * Clear output buffer, but do not write it
33 * int c; The character to be printed
35 * Put character "c" in output buffer and flush if necessary.
41 * char *s; The string to be printed
43 * Put string "s" in output buffer etc...
49 * char *s; The string to be handled
51 * Put string "s" in the output buffer, expanding control characters
57 * long n; The number to be printed
59 * print the number "n", using putch.
65 * long n; The number to be converted to a string
67 * Convert a number to a string and return a pointer to it.