1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
/*
* Copyright (C) 1996-2025 The Squid Software Foundation and contributors
*
* Squid software is distributed under GPLv2+ license and includes
* contributions from numerous individuals and organizations.
* Please see the COPYING and CONTRIBUTORS files for details.
*/
#ifndef SQUID_COMPAT_STDVARARGS_H
#define SQUID_COMPAT_STDVARARGS_H
/*
* va_* variables come from various places on different platforms.
* We provide a clean set of wrappers for the various operations
* Depending on what is available and needed.
*/
#if defined(__cplusplus)
#include <cstdarg>
#else
#if HAVE_STDARG_H
#include <stdarg.h>
#define HAVE_STDARGS /* let's hope that works everywhere (mj) */
#define VA_LOCAL_DECL va_list ap;
#define VA_START(f) va_start(ap, f)
#define VA_SHIFT(v,t) ; /* no-op for ANSI */
#define VA_END va_end(ap)
#else /* !HAVE_STDARG_H */
#if HAVE_VARARGS_H
#include <varargs.h>
#undef HAVE_STDARGS
#define VA_LOCAL_DECL va_list ap;
#define VA_START(f) va_start(ap) /* f is ignored! */
#define VA_SHIFT(v,t) v = va_arg(ap,t)
#define VA_END va_end(ap)
#else /* !HAVE_VARARGS_H*/
#error XX **NO VARARGS ** XX
#endif /* HAVE_VARARGS_H */
#endif /* HAVE_STDARG_H */
#endif /* HAVE_CSTDARG */
/* Make sure syslog goes after stdarg/varargs */
#if HAVE_SYSLOG_H
#include <syslog.h>
#endif
#endif /* SQUID_COMPAT_STDVARARGS_H */
|