13 lines
142 B
C
13 lines
142 B
C
#ifndef PUSH_POP_H
|
|
#define PUSH_POP_H
|
|
|
|
struct stackop {
|
|
bool push : 1;
|
|
char type : 7;
|
|
};
|
|
|
|
extern const struct stackop* stackops[];
|
|
|
|
#endif
|
|
|