adding functions to .h

This commit is contained in:
SinusFox
2023-05-09 15:15:35 +02:00
parent 39f2ee4394
commit af79eed4ed
+9
View File
@@ -15,3 +15,12 @@
#define _READ_PUNCTUATION_ 150
#define _STOP_ 999
#define _ERROR_ 1000
/* functions */
int start(char* sourcecode);
int getNextCharacter();
int readIdentifier();
int readNumLit();
int readOperator();
int readPunctuation();
int main();