e26f714744d13661ba63514892af8c06ca5a0c3a
[debian/amanda] / common-src / arglist.h
1 /*
2  * Amanda, The Advanced Maryland Automatic Network Disk Archiver
3  * Copyright (c) 1991-1998 University of Maryland at College Park
4  * All Rights Reserved.
5  *
6  * Permission to use, copy, modify, distribute, and sell this software and its
7  * documentation for any purpose is hereby granted without fee, provided that
8  * the above copyright notice appear in all copies and that both that
9  * copyright notice and this permission notice appear in supporting
10  * documentation, and that the name of U.M. not be used in advertising or
11  * publicity pertaining to distribution of the software without specific,
12  * written prior permission.  U.M. makes no representations about the
13  * suitability of this software for any purpose.  It is provided "as is"
14  * without express or implied warranty.
15  *
16  * U.M. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL U.M.
18  * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22  *
23  * Authors: the Amanda Development Team.  Its members are listed in a
24  * file named AUTHORS, in the root directory of this distribution.
25  */
26 /*
27  * $Id: arglist.h,v 1.4.10.2 2002/12/03 21:36:47 martinea Exp $
28  *
29  * support macros for variable argument list declaration and definition
30  */
31
32 #ifndef ARGLIST_H
33 #define ARGLIST_H
34
35 #ifdef STDC_HEADERS
36
37 #include <stdarg.h>
38
39 #define printf_arglist_function(fdecl, \
40                                 hook_type, hook_name) \
41         __attribute__ ((format (printf, 1, 0))) \
42         fdecl(hook_type hook_name, ...)
43
44 #define printf_arglist_function1(fdecl, \
45                                  arg1_type, arg1_name, \
46                                  hook_type, hook_name) \
47         __attribute__ ((format (printf, 2, 0))) \
48         fdecl(arg1_type arg1_name, \
49               hook_type hook_name, ...)
50
51 #define printf_arglist_function2(fdecl, \
52                                  arg1_type, arg1_name, \
53                                  arg2_type, arg2_name, \
54                                  hook_type, hook_name) \
55         __attribute__ ((format (printf, 3, 0))) \
56         fdecl(arg1_type arg1_name, \
57               arg2_type arg2_name, \
58               hook_type hook_name, ...)
59
60 #define arglist_function(fdecl, \
61                          hook_type, hook_name) \
62         fdecl(hook_type hook_name, ...)
63
64 #define arglist_function1(fdecl, \
65                           arg1_type, arg1_name, \
66                           hook_type, hook_name) \
67         fdecl(arg1_type arg1_name, \
68               hook_type hook_name, ...)
69
70 #define arglist_function2(fdecl, \
71                           arg1_type, arg1_name, \
72                           arg2_type, arg2_name, \
73                           hook_type, hook_name) \
74         fdecl(arg1_type arg1_name, \
75               arg2_type arg2_name, \
76               hook_type hook_name, ...)
77
78 #define arglist_start(arg,hook_name)    va_start(arg,hook_name)
79
80 #else
81
82 #include <varargs.h>
83
84 #define printf_arglist_function(fdecl, hook_type, hook_name) \
85         fdecl(hook_name, va_alist)      \
86         hook_type hook_name;            \
87         va_dcl
88
89 #define printf_arglist_function1(fdecl, arg1_type, arg1_name, hook_type, hook_name) \
90         fdecl(arg1_name, hook_name, va_alist)   \
91         arg1_type arg1_name;                    \
92         hook_type hook_name;                    \
93         va_dcl
94
95 #define printf_arglist_function2(fdecl, arg1_type, arg1_name, arg2_type, arg2_name, hook_type, hook_name) \
96         fdecl(arg1_name, arg2_name, hook_name, va_alist)        \
97         arg1_type arg1_name;                                    \
98         arg2_type arg2_name;                                    \
99         hook_type hook_name;                                    \
100         va_dcl
101
102 #define arglist_function(fdecl, hook_type, hook_name) \
103         fdecl(hook_name, va_alist)      \
104         hook_type hook_name;            \
105         va_dcl
106
107 #define arglist_function1(fdecl, arg1_type, arg1_name, hook_type, hook_name) \
108         fdecl(arg1_name, hook_name, va_alist)   \
109         arg1_type arg1_name;                    \
110         hook_type hook_name;                    \
111         va_dcl
112
113 #define arglist_function2(fdecl, arg1_type, arg1_name, arg2_type, arg2_name, hook_type, hook_name) \
114         fdecl(arg1_name, arg2_name, hook_name, va_alist)        \
115         arg1_type arg1_name;                                    \
116         arg2_type arg2_name;                                    \
117         hook_type hook_name;                                    \
118         va_dcl
119
120 #define arglist_start(arg,hook_name)    va_start(arg)
121
122 #endif
123
124 #define arglist_val(arg,type)   va_arg(arg,type)
125 #define arglist_end(arg)        va_end(arg)
126
127 #endif /* !ARGLIST_H */