1 2 3 4 5 6
#ifndef UTIL_H #define UTIL_H typedef enum {OPERATOR, COMMAND ,DOUBLE, FUNCTION} TYPE; TYPE discriminate(char *s); #endif