aboutsummaryrefslogtreecommitdiff
path: root/auxlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'auxlib.h')
-rw-r--r--auxlib.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/auxlib.h b/auxlib.h
deleted file mode 100644
index 45cbda9d..00000000
--- a/auxlib.h
+++ /dev/null
@@ -1,30 +0,0 @@
1/*
2** $Id: auxlib.h,v 1.2 1997/04/06 14:08:08 roberto Exp roberto $
3*/
4
5#ifndef auxlib_h
6#define auxlib_h
7
8#include "lua.h"
9
10struct luaL_reg {
11 char *name;
12 lua_CFunction func;
13};
14
15void luaL_openlib (struct luaL_reg *l, int n);
16void luaL_arg_check(int cond, int numarg, char *extramsg);
17char *luaL_check_string (int numArg);
18char *luaL_opt_string (int numArg, char *def);
19double luaL_check_number (int numArg);
20double luaL_opt_number (int numArg, double def);
21void luaL_verror (char *fmt, ...);
22
23
24
25/* -- private part (only for Lua modules */
26
27int luaI_findstring (char *name, char *list[]);
28
29
30#endif