2014-01-01 11:03:15 +00:00
|
|
|
/* Copyright (c) 1998-2014 Free Software Foundation, Inc.
|
1998-01-31 08:39:55 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1998.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1998-01-31 08:39:55 +00:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
1998-01-31 08:39:55 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1998-01-31 08:39:55 +00:00
|
|
|
|
|
|
|
#ifndef _DBG_LOG_H
|
|
|
|
#define _DBG_LOG_H 1
|
|
|
|
|
1998-10-18 15:16:22 +00:00
|
|
|
extern int debug_level;
|
1998-01-31 08:39:55 +00:00
|
|
|
|
2000-12-08 17:27:11 +00:00
|
|
|
extern void dbg_log (const char *str, ...)
|
2000-12-08 19:19:27 +00:00
|
|
|
__attribute__ ((__format__ (__printf__, 1, 2)));;
|
1998-10-18 15:16:22 +00:00
|
|
|
|
2004-02-17 05:16:49 +00:00
|
|
|
extern void set_logfile (const char *logfile);
|
|
|
|
extern int init_logfile (void);
|
1998-01-31 08:39:55 +00:00
|
|
|
|
|
|
|
#endif
|