This commit is contained in:
ceriel
1991-10-07 16:35:03 +00:00
parent 98b019c735
commit 0f16a0f6f8
69 changed files with 31026 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
/* niceprintf.h -- contains constants and macros from the output filter
for the generated C code. We use macros for increased speed, less
function overhead. */
#define MAX_OUTPUT_SIZE 6000 /* Number of chars on one output line PLUS
the length of the longest string
printed using nice_printf */
#define next_tab(fp) (indent += tab_size)
#define prev_tab(fp) (indent -= tab_size)