/*--------------------------------------------------------*/ /* page.h 08-aug-1997/bets */ /* */ /* 30-jul-1998/bets added stuff for travis' preprocessor */ /*--------------------------------------------------------*/ #define KEYWORD_CHAR '#' typedef struct { char *keyword; char *value; } PAIR; void page_begin( char * ); void page_end(); void page_error( char *,... ); int page_preprocessor( char *,int,PAIR * ); char *page_substitute( char *,int,PAIR * );