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

Dependents:   Squirrel

Committer:
jhnwkmn
Date:
Tue Dec 16 11:39:42 2014 +0000
Revision:
3:7268a3ceaffc
Parent:
0:97a4f8cc534c
Accepts \r as line terminator as well.

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 _SQSTD_SYSTEMLIB_H_
jhnwkmn 0:97a4f8cc534c 3 #define _SQSTD_SYSTEMLIB_H_
jhnwkmn 0:97a4f8cc534c 4
jhnwkmn 0:97a4f8cc534c 5 #ifdef __cplusplus
jhnwkmn 0:97a4f8cc534c 6 extern "C" {
jhnwkmn 0:97a4f8cc534c 7 #endif
jhnwkmn 0:97a4f8cc534c 8
jhnwkmn 0:97a4f8cc534c 9 SQUIRREL_API SQInteger sqstd_register_systemlib(HSQUIRRELVM v);
jhnwkmn 0:97a4f8cc534c 10
jhnwkmn 0:97a4f8cc534c 11 #ifdef __cplusplus
jhnwkmn 0:97a4f8cc534c 12 } /*extern "C"*/
jhnwkmn 0:97a4f8cc534c 13 #endif
jhnwkmn 0:97a4f8cc534c 14
jhnwkmn 0:97a4f8cc534c 15 #endif /* _SQSTD_SYSTEMLIB_H_ */