Standard library for external programs

This commit is contained in:
Simon Robertshaw
2012-09-10 12:47:25 +01:00
parent 369ba2eced
commit 89c50d8be2
3 changed files with 37 additions and 0 deletions

17
tptlibrary/tpt_syscalls.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef TPT_SYSCALLS_H
#define TPT_SYSCALLS_H
float sin(float value);
float cos(float value);
float atan2(float x, float y);
float sqrt(float value);
float floor(float value);
float ceil(float value);
void print(char * message);
void error(char * message);
int partCreate(int i, int x, int y, int type);
void partChangeType(int i, int x, int y, int type);
#endif