38 lines
590 B
C
38 lines
590 B
C
/* $NetBSD: verbose.c,v 1.1.1.1 2004/03/28 08:56:20 martti Exp $ */
|
|
|
|
/*
|
|
* Copyright (C) 1993-2001 by Darren Reed.
|
|
*
|
|
* See the IPFILTER.LICENCE file for details on licencing.
|
|
*
|
|
* Id: verbose.c,v 1.6 2001/06/09 17:09:25 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);
|
|
}
|