forked from gfwilliams/tiny-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TinyJS_Functions.h
executable file
·40 lines (40 loc) · 2.61 KB
/
TinyJS_Functions.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//
// TinyJS - A single-file Javascript-alike engine
//
// Authored By Gordon Williams <[email protected]>
// Copyright (C) 2009 Pur3 Ltd
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
//-----------------------------------------------------------------------------
//
// TinyJS(移植版)
//
// Ported By Naoyuki Sawa <[email protected]>
// Copyright (C) 2018 Piece Lab.
//
// * Fri Mar 30 23:59:59 JST 2018 Naoyuki Sawa
// - 1st リリース。
// - 「TinyJS」(https://github.com/gfwilliams/tiny-js)を、P/ECEで動作するように移植したものです。
// オリジナル版のTinyJSはC++で書かれていますが、P/ECE開発環境にはGCC 2.7.2相当のCコンパイラしか無いので、C++からC言語に移植しました。
// C++とC言語はだいぶん違うため、コードはほぼ全て書き換えてしまいましたが、アルゴリズムはオリジナル版のTinyJSとだいたい同じままです。
// 尚、メインターゲットはP/ECEですが、(少なくとも現時点では)Visual Studio 2017と、Visual C++ 6.0でもビルド出来ています。
// - オリジナル版のTinyJSは明示的なメモリ管理を行っていますが、移植版ではガーベージコレクターの使用を前提としてメモリ管理を省きました。
// P/ECEの場合はclipbmgc.c,又は,clipgc.cモジュールを,Windowsの場合はBoehm GCを使用して下さい。
// - オリジナル版のTinyJSを、/clip/keep/tiny-js-master.7z に保存しておきました。
// (Latest commit 56a0c6d on Mar 24 2015。2018/03/30時点の最新リビジョンです。)
//
#ifndef __TINYJS_FUNCTIONS_H__
#define __TINYJS_FUNCTIONS_H__
#ifdef __cplusplus
extern "C" {
#endif//__cplusplus
void TinyJS_registerFunctions(ST_TinyJS* tinyJS); //Register useful functions with the TinyJS interpreter.
#ifdef __cplusplus
}//extern "C"
#endif//__cplusplus
#endif//__TINYJS_FUNCTIONS_H__