1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef HENCE_GATE_H #define HENCE_GATE_H #include <stddef.h> #include "token.h" int gate_input_add(char *name); int gate_add(enum TOKEN_TYPE op, char *name, char *left, char* right); int tick(void); void gate_dump(void); #endif