The Squirrel interpreter. See http://www.squirrel-lang.org/

Dependents:   Squirrel

Committer:
jhnwkmn
Date:
Tue Dec 16 10:20:34 2014 +0000
Revision:
0:97a4f8cc534c
Initial import of Squirrel.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jhnwkmn 0:97a4f8cc534c 1 /* see copyright notice in squirrel.h */
jhnwkmn 0:97a4f8cc534c 2 #ifndef _SQPCHEADER_H_
jhnwkmn 0:97a4f8cc534c 3 #define _SQPCHEADER_H_
jhnwkmn 0:97a4f8cc534c 4
jhnwkmn 0:97a4f8cc534c 5 #if defined(_MSC_VER) && defined(_DEBUG)
jhnwkmn 0:97a4f8cc534c 6 #include <crtdbg.h>
jhnwkmn 0:97a4f8cc534c 7 #endif
jhnwkmn 0:97a4f8cc534c 8
jhnwkmn 0:97a4f8cc534c 9 #include <stdio.h>
jhnwkmn 0:97a4f8cc534c 10 #include <stdlib.h>
jhnwkmn 0:97a4f8cc534c 11 #include <string.h>
jhnwkmn 0:97a4f8cc534c 12 #include <assert.h>
jhnwkmn 0:97a4f8cc534c 13 #include <new>
jhnwkmn 0:97a4f8cc534c 14 //squirrel stuff
jhnwkmn 0:97a4f8cc534c 15 #include <squirrel.h>
jhnwkmn 0:97a4f8cc534c 16 #include "sqobject.h"
jhnwkmn 0:97a4f8cc534c 17 #include "sqstate.h"
jhnwkmn 0:97a4f8cc534c 18
jhnwkmn 0:97a4f8cc534c 19 #endif //_SQPCHEADER_H_