diff options
author | Treeki <treeki@gmail.com> | 2011-07-10 22:06:08 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2011-07-10 22:06:08 +0200 |
commit | 4161c5d1c46436e3b942d707da1b40317e87180e (patch) | |
tree | 7266831f88805ff0fa5f0517e64d8ec2dd8cbb73 /include/common.h | |
parent | 54cbbfb69c8a9562d89f05967ae38011327e8da0 (diff) | |
download | kamek-4161c5d1c46436e3b942d707da1b40317e87180e.tar.gz kamek-4161c5d1c46436e3b942d707da1b40317e87180e.zip |
custom blocks, states and static initialisers. fuck yeah
Diffstat (limited to '')
-rwxr-xr-x | include/common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/common.h b/include/common.h index 6f3c84f..2e7dc80 100755 --- a/include/common.h +++ b/include/common.h @@ -44,6 +44,9 @@ typedef struct { f32 x, y, z; } VEC3, Vec, *VecPtr, Point3d, *Point3dPtr; typedef struct { s16 x; s16 y; s16 z; }S16Vec, *S16VecPtr;
typedef struct { f32 x, y, z, w; } Quaternion, *QuaternionPtr, Qtrn, *QtrnPtr;
+extern "C" const char * strrchr ( const char * str, int character );
+extern "C" int strcmp ( const char * str1, const char * str2 );
+
#include "rvl/mtx.h"
|