/* * FISG - Helper functions for XML/HTML output modules * Programmed and designed by Matti 'ccr' Hamalainen * (C) Copyright 2004 Tecnic Software productions (TNSP) * * Please read file 'COPYING' for information on license and distribution. */ #ifndef _OUT_XHTMLGEN_H #define _OUT_XHTMLGEN_H #include "th_config.h" #include typedef struct { char *dataPath, *cssPath; } t_xhtmlconfig; extern t_xhtmlconfig xhtml_cfg; int xml_fprintf_entitize(FILE *, char *); int xml_fprintf_urlencode(FILE *, char *); int output_xhtml_init(t_config *); #endif /* _OUT_XHTMLGEN_H */