Variable * variable_add(Environment *_environment, char *_source, char *_destination)
Add two variable and return the sum of them.
Variable * variable_retrieve_or_define(Environment *_environment, char *_name, VariableType _type, int _value)
Variable * variable_move(Environment *_environment, char *_source, char *_destination)
Store the value of a variable inside another variable by converting it.
Variable * variable_resident(Environment *_environment, VariableType _type, char *_meaning)
Variable * variable_sub(Environment *_environment, char *_source, char *_dest)
Make a differenze between two variable and return the difference of them.
Variable * variable_cast(Environment *_environment, char *_source, VariableType _type)
Cast a variable from a type to another.
Variable * variable_store(Environment *_environment, char *_destination, unsigned int _value)
Store a direct value to a variable.
Variable * distance(Environment *_environment, char *_x1, char *_y1, char *_x2, char *_y2)
Return the distance between two (screen) positions.
Variable * powering(Environment *_environment, char *_base, char *_exponential)
Emit code to raise a variable to a given variable.
Variable * sqroot(Environment *_environment, char *_value)
Return the square root of a variable.
struct _Variable Variable
Structure of a single variable.
struct _Environment Environment
Structure of compilation environment.
char DATATYPE_AS_STRING[][16]