Added / started some infrastructure / boilerplate code.

This commit is contained in:
2024-10-30 00:28:11 -05:00
parent 8923a2006d
commit 2c85077031
12 changed files with 273 additions and 27 deletions
+11
View File
@@ -0,0 +1,11 @@
#ifndef KEYWORDS_H
#define KEYWORDS_H
typedef enum {
FN, ORG
} Keyword;
int IsKeyword(const char* text, Keyword* keyword);
void GetKeywordText(Keyword keyword, char buffer[16]);
#endif