mirror of
https://github.com/openNDS/openNDS.git
synced 2026-01-10 04:17:55 -05:00
39 lines
1.8 KiB
C
39 lines
1.8 KiB
C
/********************************************************************\
|
|
* This program is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU General Public License as *
|
|
* published by the Free Software Foundation; either version 2 of *
|
|
* the License, or (at your option) any later version. *
|
|
* *
|
|
* This program 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 General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License*
|
|
* along with this program; if not, contact: *
|
|
* *
|
|
* Free Software Foundation Voice: +1-617-542-5942 *
|
|
* 59 Temple Place - Suite 330 Fax: +1-617-542-2652 *
|
|
* Boston, MA 02111-1307, USA gnu@gnu.org *
|
|
* *
|
|
\********************************************************************/
|
|
|
|
/* $Id: debug.h 901 2006-01-17 18:58:13Z mina $ */
|
|
/** @file debug.h
|
|
@brief Debug output routines
|
|
@author Copyright (C) 2004 Philippe April <papril777@yahoo.com>
|
|
*/
|
|
|
|
#ifndef _DEBUG_H_
|
|
#define _DEBUG_H_
|
|
|
|
/** @brief Used to output messages.
|
|
*The messages will include the finlname and line number, and will be sent to syslog if so configured in the config file
|
|
*/
|
|
#define debug(level, format...) _debug(__FILE__, __LINE__, level, format)
|
|
|
|
/** @internal */
|
|
void _debug(char *filename, int line, int level, char *format, ...);
|
|
|
|
#endif /* _DEBUG_H_ */
|