File: stdvarargs.h

package info (click to toggle)
squid 5.7-2%2Bdeb12u5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 37,848 kB
  • sloc: cpp: 196,107; ansic: 20,277; makefile: 6,056; sh: 5,267; perl: 2,292; sql: 326; python: 248; awk: 142; sed: 1
file content (50 lines) | stat: -rw-r--r-- 1,347 bytes parent folder | download
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-2022 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_STDVARARGS_H
#define _SQUID_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_STDVARARGS_H */