blob: 24c65d4db0c411fc868f5c2604931b9c956dca56 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)
|