diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-09-16 16:25:59 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-09-16 16:25:59 -0300 |
commit | c31aa863ac29fad5bb3f44c4e08640f877b65f25 (patch) | |
tree | 3eb3fb1dcb50a3b1beefaece33aba00e572e5ad6 /lauxlib.h | |
parent | ff08b0f4069e322ec4c2b02aa5553424227357ba (diff) | |
download | lua-c31aa863ac29fad5bb3f44c4e08640f877b65f25.tar.gz lua-c31aa863ac29fad5bb3f44c4e08640f877b65f25.tar.bz2 lua-c31aa863ac29fad5bb3f44c4e08640f877b65f25.zip |
Auxiliar functions for building Lua libraries
Diffstat (limited to '')
-rw-r--r-- | lauxlib.h (renamed from auxlib.h) | 13 |
1 files changed, 6 insertions, 7 deletions
@@ -1,12 +1,17 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: auxlib.h,v 1.2 1997/04/06 14:08:08 roberto Exp roberto $ | 2 | ** $Id: $ |
3 | ** Auxiliar functions for building Lua libraries | ||
4 | ** See Copyright Notice in lua.h | ||
3 | */ | 5 | */ |
4 | 6 | ||
7 | |||
5 | #ifndef auxlib_h | 8 | #ifndef auxlib_h |
6 | #define auxlib_h | 9 | #define auxlib_h |
7 | 10 | ||
11 | |||
8 | #include "lua.h" | 12 | #include "lua.h" |
9 | 13 | ||
14 | |||
10 | struct luaL_reg { | 15 | struct luaL_reg { |
11 | char *name; | 16 | char *name; |
12 | lua_CFunction func; | 17 | lua_CFunction func; |
@@ -21,10 +26,4 @@ double luaL_opt_number (int numArg, double def); | |||
21 | void luaL_verror (char *fmt, ...); | 26 | void luaL_verror (char *fmt, ...); |
22 | 27 | ||
23 | 28 | ||
24 | |||
25 | /* -- private part (only for Lua modules */ | ||
26 | |||
27 | int luaI_findstring (char *name, char *list[]); | ||
28 | |||
29 | |||
30 | #endif | 29 | #endif |