/*
 * Routines for output formatting
 */
#ifndef _H_FORMAT_
#define _H_FORMAT_

#undef START_INDENT
#define START_INDENT	0

extern int output_line _ANSI_PROTO_((void));
extern int reset_output_line _ANSI_PROTO_((void));

extern void reset_indent _ANSI_PROTO_((void));
extern void new_line _ANSI_PROTO_((void));
extern void indent_to _ANSI_PROTO_((int));
extern void put_string _ANSI_PROTO_((char*));
extern void put_char _ANSI_PROTO_((int));
extern int cur_indent _ANSI_PROTO_((void));

#endif /* _H_FORMAT_ */


syntax highlighted by Code2HTML, v. 0.9.1