From e726b14d234c169da8f7d2e409abec3d5769a969 Mon Sep 17 00:00:00 2001 From: Thierry Fournier Date: Thu, 11 Feb 2016 17:57:57 +0100 Subject: [PATCH] DOC: lua: copyrights --- src/hlua.c | 12 ++++++++++++ src/hlua_fcn.c | 13 ++++++++++++- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/src/hlua.c b/src/hlua.c index 11117205d..f1c937afa 100644 --- a/src/hlua.c +++ b/src/hlua.c @@ -1,3 +1,15 @@ +/* + * Lua unsafe core engine + * + * Copyright 2015-2016 Thierry Fournier + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version + * 2 of the License, or (at your option) any later version. + * + */ + #include #include diff --git a/src/hlua_fcn.c b/src/hlua_fcn.c index fdcac0577..5adb12815 100644 --- a/src/hlua_fcn.c +++ b/src/hlua_fcn.c @@ -1,4 +1,15 @@ -/* All the functions in this file runs with aLua stack, and can +/* + * Lua safe functions + * + * Copyright 2015-2016 Thierry Fournier + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version + * 2 of the License, or (at your option) any later version. + * + * + * All the functions in this file runs with a Lua stack, and can * return with a longjmp. All of these function must be launched * in an environment able to catch a longjmp, otherwise a * critical error can be raised.