You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

9 lines
357 B

#include "object.h"
ObjectBase* Arifm_Add(const ObjectList* input);
ObjectBase* Arifm_Sub(const ObjectList* input);
ObjectBase* Arifm_Mul(const ObjectList* input);
ObjectBase* Arifm_Div(const ObjectList* input);
ObjectBase* Arifm_Pow(const ObjectList* input);
ObjectBase* Arifm_Neg(const ObjectList* input);
ObjectBase* Arifm_Pos(const ObjectList* input);