Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:02:03

0001 #ifndef MAD_EVAL_H
0002 #define MAD_EVAL_H
0003 
0004 // types
0005 
0006 struct in_cmd;
0007 struct int_array;
0008 
0009 // interface
0010 
0011 void    deco_init(void);
0012 void    process(void);
0013 void    pro_input(char* statement);
0014 int     polish_expr(int c_item, char** item);   /* split input */
0015 double  polish_value(struct int_array* deco, char* expr_string);
0016 int     act_special(int type, char* statement);
0017 void    print_value(struct in_cmd*);
0018 
0019 #endif // MAD_EVAL_H
0020