summaryrefslogtreecommitdiff
path: root/05/main.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-02-08 20:09:08 -0500
committerpommicket <pommicket@gmail.com>2022-02-08 20:09:08 -0500
commit0a2d05bdd5dd788de90b2291a981b851de183976 (patch)
tree5af7c9e14d42ec4e5fd3949f75dfbc1b7f198be8 /05/main.c
parent26fccf7cd711468a600f833e375182b2a326fd79 (diff)
more parsing tests, more fixes
- #elif now actually works properly (hopefully) - fixed some array decaying bugs (hopefully), and generally simplified typing
Diffstat (limited to '05/main.c')
-rw-r--r--05/main.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/05/main.c b/05/main.c
index 94dfbd7..c929f02 100644
--- a/05/main.c
+++ b/05/main.c
@@ -1,10 +1,17 @@
-#include "tests/parse_stb_sprintf.h"
+#include "tests/parse_stb_image.h"
/* #if 0 */
/* #elif 1 */
/* int f(){} */
/* #endif */
+/* @TODO: some more testing of #if/#elif/#else/#endif */
+/* @TODO: ensure that
+ struct Something {
+ int a;
+ } x,y;
+ works
+*/
+
-/* @TODO: why are line numbers off by 1? */
int main() {
}