1 2 3 4 5 6 7
#ifndef EVAL_H #define EVAL_H struct list *eval(struct list *list); struct list *eval_str(const char *str); #endif