00001 00013 /* 00014 * Copyright (C) 2001-2003 Oliver Cordes (ocordes@astro.uni-bonn.de) 00015 * 00016 * This program is free software; you can redistribute it and/or 00017 * modify it under the terms of the GNU General Public License as 00018 * published by the Free Software Foundation, version 2. 00019 * 00020 */ 00021 00022 00023 #ifndef __logfile_h 00024 #define __logfile_h 1 00025 00026 extern char logfile_name[1000]; 00027 void init_logfile ( char * ); 00028 int done_logfile ( void ); 00029 00030 void logfile_write( char *func, char *format, ... ); 00031 00032 00033 00034 #endif