formatting 90% done; encapsulated everything in the TinyJS namespace, and renamed...
[tinyjs-rewrite.git] / .svn / pristine / 5d / 5db4ff612674ecf806062137f28793f303e9031a.svn-base
blobea216c8b628f01fe3bcc401c2ef5d81f3b943128
1 /*\r
2  * TinyJS\r
3  *\r
4  * A single-file Javascript-alike engine\r
5  *\r
6  * Authored By Gordon Williams <gw@pur3.co.uk>\r
7  *\r
8  * Copyright (C) 2009 Pur3 Ltd\r
9  *\r
10  * Permission is hereby granted, free of charge, to any person obtaining a copy of\r
11  * this software and associated documentation files (the "Software"), to deal in\r
12  * the Software without restriction, including without limitation the rights to\r
13  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\r
14  * of the Software, and to permit persons to whom the Software is furnished to do\r
15  * so, subject to the following conditions:\r
17  * The above copyright notice and this permission notice shall be included in all\r
18  * copies or substantial portions of the Software.\r
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
21  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r
22  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r
23  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r
24  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r
25  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r
26  * SOFTWARE.\r
27  */\r
29 #ifndef TINYJS_FUNCTIONS_H\r
30 #define TINYJS_FUNCTIONS_H\r
32 #include "TinyJS.h"\r
34 /// Register useful functions with the TinyJS interpreter\r
35 extern void registerFunctions(CTinyJS *tinyJS);\r
37 #endif\r