/* busrep4.h - prototypes for busrep4 */ int begin(char* dest, char* source); /* user supplied function */ int count_lines(char* line); /* used by page control */ int do_header(char* header); /* page headings */ void do_level_header(char* dest); /* level change headings */ void do_level_totals(char* dest); /* sub totals */ void do_print(char* line); /* do the actual printing */ int finish(char* dest, char* source); /* user supplied function */ int process(char* dest, char* source); /* user supplied function */ int split_tokens(char* str, char* delims, int expect, char* tokens[]);