Fixed some things.
This commit is contained in:
parent
aae8402403
commit
6f283c1d12
@ -10,21 +10,4 @@
|
|||||||
// - Expression 1
|
// - Expression 1
|
||||||
// - Expression 2
|
// - Expression 2
|
||||||
|
|
||||||
typedef enum OpType {
|
|
||||||
OPTYPE_PLUS,
|
|
||||||
OPTYPE_MINUS
|
|
||||||
} optype_t;
|
|
||||||
|
|
||||||
typedef union Exp {
|
|
||||||
typedef struct Op {
|
|
||||||
optype_t type;
|
|
||||||
Exp* exp1;
|
|
||||||
Exp* exp2;
|
|
||||||
} op_t;
|
|
||||||
|
|
||||||
int n;
|
|
||||||
} exp_t;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -1,12 +0,0 @@
|
|||||||
#ifndef UTIL_H
|
|
||||||
#define UTIL_H
|
|
||||||
|
|
||||||
// Utilies.
|
|
||||||
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
// Exit with an error. Returns int for ease of use, but should be treated as void.
|
|
||||||
int die(char* msg);
|
|
||||||
|
|
||||||
#endif
|
|
@ -1,6 +1,3 @@
|
|||||||
#include "include/util.h"
|
#include "include/util.h"
|
||||||
|
|
||||||
int is_even(int n) {
|
int is_even(int n) { return !(n % 2); }
|
||||||
return !(n%2);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user