#ifndef _FUNC_H #define _FUNC_H struct node; struct prog; struct type; struct func { const char *name; struct type *type; int (*static_verify)(struct node *); int (*type_infer)(struct prog *, struct node *); }; #endif /* _FUNC_H */