mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-09 21:51:48 +00:00
6934e1422f
- Errors will now be more precise, there are now 2 separate errors for a function lookup failure and a failure inside a function - Errors will now show which line number they failed at, instead of the character offset - Minus values are not considered errors anymore, however, printing them does not work well - Gotos now make a @RETURN variable to make making functions easier
7 lines
No EOL
132 B
C
7 lines
No EOL
132 B
C
#pragma once
|
|
|
|
#define INFUNC_FAIL (int)0xC0000000
|
|
|
|
void runScript(char *path);
|
|
void skipbrackets();
|
|
void getfollowingchar(char end); |