summaryrefslogtreecommitdiff
path: root/gate.h
blob: 8b26970f7ece1863c111df54e93a02fbb05e83f1 (plain)
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