This repository has been archived on 2026-05-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
prog-104-p-05-2030/The-Nook-GamesTM/Proficiencies/utils.h
T
2026-04-27 00:12:05 +02:00

20 lines
264 B
C

#ifndef UTILS_H
#define UTILS_H
union element_type
{
int operand;
char operator;
};
enum element_tag {
TOKEN_OPERAND,
TOKEN_OPERATOR
};
struct expression_element {
enum element_tag tag;
union element_type data;
};
#endif /* ! UTILS_H */