00001 #ifndef FUNC_TYPES_H 00002 #define FUNC_TYPES_H 00003 #include "common.h" 00004 00005 00006 /* Function Type */ 00007 typedef struct FUNC_T { 00008 char name[MAX_TOKEN_SIZE]; 00009 double (*func_ptr)(); 00010 int num_args; 00011 } func_t; 00012 00013 #endif