1997-03-18 12:30:50 -03:00
|
|
|
/*
|
1998-12-28 11:44:54 -02:00
|
|
|
** $Id: lauxlib.h,v 1.9 1998/06/19 16:14:09 roberto Exp roberto $
|
1998-06-19 13:14:09 -03:00
|
|
|
** Auxiliary functions for building Lua libraries
|
1997-09-16 16:25:59 -03:00
|
|
|
** See Copyright Notice in lua.h
|
1997-03-18 12:30:50 -03:00
|
|
|
*/
|
|
|
|
|
1997-09-16 16:25:59 -03:00
|
|
|
|
1997-03-18 12:30:50 -03:00
|
|
|
#ifndef auxlib_h
|
|
|
|
#define auxlib_h
|
|
|
|
|
1997-09-16 16:25:59 -03:00
|
|
|
|
1997-03-18 12:30:50 -03:00
|
|
|
#include "lua.h"
|
|
|
|
|
1997-09-16 16:25:59 -03:00
|
|
|
|
1997-03-18 12:30:50 -03:00
|
|
|
struct luaL_reg {
|
|
|
|
char *name;
|
|
|
|
lua_CFunction func;
|
|
|
|
};
|
|
|
|
|
1998-01-09 13:09:53 -02:00
|
|
|
|
|
|
|
#define luaL_arg_check(cond,numarg,extramsg) if (!(cond)) \
|
|
|
|
luaL_argerror(numarg,extramsg)
|
|
|
|
|
1997-03-18 12:30:50 -03:00
|
|
|
void luaL_openlib (struct luaL_reg *l, int n);
|
1998-01-09 13:09:53 -02:00
|
|
|
void luaL_argerror (int numarg, char *extramsg);
|
1998-03-06 13:54:42 -03:00
|
|
|
#define luaL_check_string(n) (luaL_check_lstr((n), NULL))
|
|
|
|
char *luaL_check_lstr (int numArg, long *len);
|
|
|
|
#define luaL_opt_string(n, d) (luaL_opt_lstr((n), (d), NULL))
|
|
|
|
char *luaL_opt_lstr (int numArg, char *def, long *len);
|
1997-04-06 11:08:08 -03:00
|
|
|
double luaL_check_number (int numArg);
|
1998-12-28 11:44:54 -02:00
|
|
|
#define luaL_check_int(n) ((int)luaL_check_number(n))
|
|
|
|
#define luaL_check_long(n) ((long)luaL_check_number(n))
|
1997-04-06 11:08:08 -03:00
|
|
|
double luaL_opt_number (int numArg, double def);
|
1998-12-28 11:44:54 -02:00
|
|
|
#define luaL_opt_int(n,d) ((int)luaL_opt_number(n,d))
|
|
|
|
#define luaL_opt_long(n,d) ((long)luaL_opt_number(n,d))
|
1997-12-09 11:50:08 -02:00
|
|
|
lua_Object luaL_functionarg (int arg);
|
|
|
|
lua_Object luaL_tablearg (int arg);
|
1997-09-26 12:02:26 -03:00
|
|
|
lua_Object luaL_nonnullarg (int numArg);
|
1997-03-18 12:30:50 -03:00
|
|
|
void luaL_verror (char *fmt, ...);
|
1997-12-17 18:48:58 -02:00
|
|
|
char *luaL_openspace (int size);
|
|
|
|
void luaL_resetbuffer (void);
|
|
|
|
void luaL_addchar (int c);
|
1998-03-06 13:54:42 -03:00
|
|
|
int luaL_getsize (void);
|
1997-12-17 18:48:58 -02:00
|
|
|
void luaL_addsize (int n);
|
|
|
|
int luaL_newbuffer (int size);
|
|
|
|
void luaL_oldbuffer (int old);
|
|
|
|
char *luaL_buffer (void);
|
1998-06-18 13:57:03 -03:00
|
|
|
int luaL_findstring (char *name, char *list[]);
|
1997-03-18 12:30:50 -03:00
|
|
|
|
1997-04-07 11:48:53 -03:00
|
|
|
|
1997-03-18 12:30:50 -03:00
|
|
|
#endif
|