From 3fb5430080199a6d92a63f8259fe4a88df9b83ba Mon Sep 17 00:00:00 2001 From: JSDurand Date: Tue, 1 Feb 2022 12:22:34 +0800 Subject: need to stop abusing hash tables Hash tables take too much space! If I use hash tables, the length of the input will be severely limited, to an unacceptable extent. So we have to use arrays instead. --- src/test/check_pred.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/test/check_pred.c (limited to 'src/test/check_pred.c') diff --git a/src/test/check_pred.c b/src/test/check_pred.c new file mode 100644 index 0000000..b0b95b3 --- /dev/null +++ b/src/test/check_pred.c @@ -0,0 +1,7 @@ +#include "../grammar.h" + +int +main(int UNUSED argc, char ** UNUSED argv) +{ + return 77; +} -- cgit v1.2.3-18-g5258