diff options
| author | Lua Team <team@lua.org> | 1995-11-28 12:00:00 +0000 |
|---|---|---|
| committer | repogen <> | 1995-11-28 12:00:00 +0000 |
| commit | 71754d2f6423fb9b6e87658e58bafc5470d53f65 (patch) | |
| tree | c704e97b80e52a52d3152738941bb4c8ca676b97 /include/lualib.h | |
| parent | a8b6ba0954edb9e0e669e1f451b9a8f145ce5166 (diff) | |
| download | lua-github-2.2.tar.gz | |
Lua 2.22.2
Diffstat (limited to 'include/lualib.h')
| -rw-r--r-- | include/lualib.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/lualib.h b/include/lualib.h index 9ce7e44a..d250aa5b 100644 --- a/include/lualib.h +++ b/include/lualib.h @@ -2,7 +2,7 @@ ** Libraries to be used in LUA programs ** Grupo de Tecnologia em Computacao Grafica ** TeCGraf - PUC-Rio -** $Id: lualib.h,v 1.3 1994/12/13 15:59:16 roberto Exp $ +** $Id: lualib.h,v 1.4 1995/11/10 17:54:31 roberto Exp $ */ #ifndef lualib_h @@ -12,5 +12,11 @@ void iolib_open (void); void strlib_open (void); void mathlib_open (void); + +/* auxiliar functions (private) */ +void lua_arg_error(char *funcname); +char *lua_check_string (int numArg, char *funcname); +float lua_check_number (int numArg, char *funcname); + #endif |
