4 * Copyright (c) Tuomo Valkonen 1999-2001.
5 * See the included file LICENSE for details.
8 #ifndef INCLUDED_FUNCTION_H
9 #define INCLUDED_FUNCTION_H
12 #include <libtu/tokenizer.h>
26 typedef void WFuncHandler(WThing
*thing
, WFunction
*func
,
27 int n
, const Token
*args
);
30 DECLSTRUCT(WFunction
){
31 WFuncHandler
*callhnd
;
39 extern WFunction
*lookup_func(const char *name
, int funtab
);
40 extern int complete_mainfunc(char *nam
, char ***cp_ret
, char **beg
);
42 #endif /* INCLUDED_FUNCTION_H */