aboutsummaryrefslogtreecommitdiff
path: root/irc/c_debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'irc/c_debug.c')
-rw-r--r--irc/c_debug.c61
1 files changed, 61 insertions, 0 deletions
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