summaryrefslogtreecommitdiff
path: root/lauxlib.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lauxlib.h (renamed from auxlib.h)13
1 files changed, 6 insertions, 7 deletions
diff --git a/auxlib.h b/lauxlib.h
index 45cbda9d..9c616c2b 100644
--- a/auxlib.h
+++ b/lauxlib.h
@@ -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
10struct luaL_reg { 15struct 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);
21void luaL_verror (char *fmt, ...); 26void luaL_verror (char *fmt, ...);
22 27
23 28
24
25/* -- private part (only for Lua modules */
26
27int luaI_findstring (char *name, char *list[]);
28
29
30#endif 29#endif