1 #include <config.h> 2 3 /* Specification. */ 4 #include "test-moo-sub2.h" 5 6 #include <stdio.h> 7 8 #pragma implementation 9 10 void begin_indent(sub2_t x)11sub2::begin_indent (sub2_t x) 12 { 13 x->indent++; 14 } 15 16 void end_indent(sub2_t x)17sub2::end_indent (sub2_t x) 18 { 19 x->indent--; 20 } 21