5 void yyerror (char const *);
17 } st; /* subtree type */
20 struct tree* c; /* condition */
21 struct tree* i; /* if */
22 struct tree* e; /* else */
29 JUST_BOOL /* value only in left, no op */
34 } cond; /* binary operator */
70 struct tree* input_tree;
73 #define CC(a,b) ((a<<8)|b)
74 void* xmalloc(size_t size);
75 void* xrealloc(void* buf, size_t size);
76 char* xstrdup(char* s);
77 void __attribute__ ((noreturn)) die(char* msg, ...);
78 void read_conf(char* filename);
103 char* default_mailbox;
105 struct list* current_headers;
106 struct email* current_body;
107 struct list* make_hlist(void);
108 void print_headers(struct list* l);
109 void do_action(struct action* a);
110 struct email* get_body(void);
113 void save_gids(void);
114 void close_mailbox(int fd, char* path, int is_default_mailbox);
115 int open_mailbox(char* path, int is_default_mailbox);
116 char* cat(char* l, char* r);
153 int res; /* result */
160 int res; /* result */
171 struct list input_code;
172 struct list* var_hash;
174 int temp_varcode_start;
181 void compile(struct tree* t, struct list* where);
182 int find_var(char* name, struct list* hash);
183 int store_const(char* c);
184 struct list* new_var_hash(void);
185 void print_code(void);