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 | | |
| | | | | | | #ifndef MODULE_SUPPORT_H | #include <stdarg.h> | | | int va_check_args(struct svalue *s, int minargs, va_list arglist); | int check_args(int args, int minargs, ...); | void check_all_args(const char *fnname, int args, int minargs, ... ); | int va_get_args(struct svalue *s, | INT32 num_args, | char *fmt, | va_list ptr); | int get_args(struct svalue *s, | INT32 num_args, | char *fmt, ...); | void get_all_args(char *fname, INT32 args, char *format, ... ); | | | #endif | | |
|