--- psiconv/trunk/lib/psiconv/parse_routines.h 2000/12/10 02:17:45 55 +++ psiconv/trunk/lib/psiconv/parse_routines.h 2000/12/13 16:17:54 62 @@ -20,8 +20,7 @@ #ifndef PSICONV_PARSE_ROUTINES_H #define PSICONV_PARSE_ROUTINES_H -#include "data.h" -#include "parse.h" +#include #ifdef __cplusplus extern "C" { @@ -29,20 +28,12 @@ /* *************** - * parse_aux.c * + * misc.c * *************** */ -/* These functions print error, warning, progress and debug information to - stderr */ -extern void psiconv_fatal(int level, psiconv_u32 off, const char *format,...); -extern void psiconv_warn(int level, psiconv_u32 off, const char *format,...); -extern void psiconv_progress(int level, psiconv_u32 off, - const char *format,...); -extern void psiconv_debug(int level, psiconv_u32 off, const char *format,...); - /* This function returns a copy of a string, that contains no ASCII codes that are not printable. You should free this string yourself when you are - done with it. */ + done with it. Returns NULL if there is not enough memory left. */ extern char *psiconv_make_printable(const char *s); /* **************