summaryrefslogtreecommitdiffstats
path: root/lib/verbose.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/verbose.c')
-rw-r--r--lib/verbose.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/lib/verbose.c b/lib/verbose.c
new file mode 100644
index 0000000..4a856b0
--- /dev/null
+++ b/lib/verbose.c
@@ -0,0 +1,35 @@
+/*
+ * Copyright (C) 2000-2001 by Darren Reed.
+ *
+ * See the IPFILTER.LICENCE file for details on licencing.
+ *
+ * $Id: verbose.c,v 1.6.4.1 2006/06/16 17:21:18 darrenr Exp $
+ */
+
+#if defined(__STDC__)
+# include <stdarg.h>
+#else
+# include <varargs.h>
+#endif
+#include <stdio.h>
+
+#include "ipt.h"
+#include "opts.h"
+
+
+#if defined(__STDC__)
+void verbose(char *fmt, ...)
+#else
+void verbose(fmt, va_alist)
+char *fmt;
+va_dcl
+#endif
+{
+ va_list pvar;
+
+ va_start(pvar, fmt);
+
+ if (opts & OPT_VERBOSE)
+ vprintf(fmt, pvar);
+ va_end(pvar);
+}
OpenPOWER on IntegriCloud