#ifndef FUNCTION_H #define FUNCTION_H #define SCFUNC_GLOBAL 0x1 /* Says that anyone can use this function */ struct sc_function_struct { char *name; OBJ *owner; unsigned long flags; int nargs; char *value; struct sc_function_struct *next; }; typedef struct sc_function_struct SCFUNC; extern SCFUNC *sc_function_list; #endif /* FUNCTION_H */