From 4440a86cfa359b8e40a484a2cd46d33db5455d8a Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Mon, 25 May 2020 20:09:04 +0200 Subject: Initial --- irc/c_debug.c | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 irc/c_debug.c (limited to 'irc/c_debug.c') diff --git a/irc/c_debug.c b/irc/c_debug.c new file mode 100644 index 0000000..4cf9156 --- /dev/null +++ b/irc/c_debug.c @@ -0,0 +1,61 @@ +/************************************************************************ + * IRC - Internet Relay Chat, irc/c_debug.c + * Copyright (C) 1990 Jarkko Oikarinen and + * University of Oulu, Computing Center + * + * 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 1, 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, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + +#ifndef lint +static char rcsid[] = "@(#)$Id: c_debug.c,v 1.3 1998/05/12 16:55:49 kalt Exp $"; +#endif + +#include "os.h" +#include "c_defines.h" +#define C_DEBUG_C +#include "c_externs.h" +#undef C_DEBUG_C + +struct stats ircst, *ircstp = &ircst; + +#ifdef DEBUGMODE +#if ! USE_STDARG +void debug(level, form, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10) +int level; +char *form, *p1, *p2, *p3, *p4, *p5, *p6, *p7, *p8, *p9, *p10; +#else +void debug(int level, char *form, ...) +#endif +{ + if (debuglevel >= 0) + if (level <= debuglevel) { + char buf[512]; +#if ! USE_STDARG + (void)sprintf(buf, form, + p1, p2, p3, p4, p5, p6, p7, p8, p9, p10); +#else + va_list va; + va_start(va, form); + (void)vsprintf(buf, form, va); + va_end(va); +#endif + putline(buf); + } +} +#else /* do nothing */ +void debug() +{ +} +#endif -- cgit v1.2.3