Files
klang/src/test/math/math.h

19 lines
373 B
C

/*
Die nachfolgenden Funktionen werden später dazu gelinkt
Der Ursprung ist die tests.k Datei, dort sind diese Funktionen implementiert
*/
int add(int x, int y);
int sub(int x, int y);
int mul(int x, int y);
int modulo(int x, int y);
int neg(int x);
int id(int x);
int selfMinus(int x);
int t1();
int t2();
int t3();
int t4();
int t5();
int t6();
int t7();
int t8();