pike.git
/
src
/
module_support.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/module_support.h:1:
+
/*\
+
||| This file a part of Pike, and is copyright by Fredrik Hubinette
+
||| Pike is distributed as GPL (General Public License)
+
||| See the files COPYING and DISCLAIMER for more information.
+
\*/
-
+
#ifndef MODULE_SUPPORT_H
+
#include <stdarg.h>
+
+
/* Prototypes begin here */
+
void check_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, ... );
+
/* Prototypes end here */
+
+
#endif
Newline at end of file added.