Used for working with calculator variables. More...
Go to the source code of this file.
Functions | |
char * | getOrCreateVar (char *name, int size) __naked |
Gets a var or creates one a given size. | |
void | archive (char *name) __naked |
Toggles if a var is archived. | |
void | delete (char *name) __naked |
Delete a var. | |
Used for working with calculator variables.
void archive | ( | char * | name | ) |
Toggles if a var is archived.
[name] | Name of the var to be archived/archived |
See: https://wikiti.brandonw.net/index.php?title=83Plus:BCALLs:4FD8
void delete | ( | char * | name | ) |
Delete a var.
[name] | Name of the var to be removed |
char * getOrCreateVar | ( | char * | name, |
int | size ) |
Gets a var or creates one a given size.
[name] | the name of a variable after adding the type to the name (like with addAppVarObj()) |
[size] | the size of a variable |
I only care about appvars, but delete and archive should work for anything Also float math could be combined with these of you use _StoSysTok see: https://taricorp.gitlab.io/83pa28d/lesson/day19.html and https://taricorp.gitlab.io/83pa28d/lesson/day20.html