1997-03-18 07:30:50 -08:00
|
|
|
/*
|
1997-12-09 05:50:08 -08:00
|
|
|
** $Id: lauxlib.h,v 1.3 1997/11/21 19:00:46 roberto Exp roberto $
|
1997-09-16 12:25:59 -07:00
|
|
|
** Auxiliar functions for building Lua libraries
|
|
|
|
** See Copyright Notice in lua.h
|
1997-03-18 07:30:50 -08:00
|
|
|
*/
|
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
|
1997-03-18 07:30:50 -08:00
|
|
|
#ifndef auxlib_h
|
|
|
|
#define auxlib_h
|
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
|
1997-03-18 07:30:50 -08:00
|
|
|
#include "lua.h"
|
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
|
1997-03-18 07:30:50 -08:00
|
|
|
struct luaL_reg {
|
|
|
|
char *name;
|
|
|
|
lua_CFunction func;
|
|
|
|
};
|
|
|
|
|
|
|
|
void luaL_openlib (struct luaL_reg *l, int n);
|
1997-11-21 11:00:46 -08:00
|
|
|
void luaL_arg_check (int cond, int numarg, char *extramsg);
|
1997-04-06 07:08:08 -07:00
|
|
|
char *luaL_check_string (int numArg);
|
|
|
|
char *luaL_opt_string (int numArg, char *def);
|
|
|
|
double luaL_check_number (int numArg);
|
|
|
|
double luaL_opt_number (int numArg, double def);
|
1997-12-09 05:50:08 -08:00
|
|
|
lua_Object luaL_functionarg (int arg);
|
|
|
|
lua_Object luaL_tablearg (int arg);
|
1997-09-26 08:02:26 -07:00
|
|
|
lua_Object luaL_nonnullarg (int numArg);
|
1997-03-18 07:30:50 -08:00
|
|
|
void luaL_verror (char *fmt, ...);
|
|
|
|
|
1997-04-07 07:48:53 -07:00
|
|
|
|
1997-03-18 07:30:50 -08:00
|
|
|
#endif
|