mirror of https://github.com/lua/lua
31 lines
602 B
C
31 lines
602 B
C
/*
|
|
** $Id: auxlib.h,v 1.2 1997/04/06 14:08:08 roberto Exp roberto $
|
|
*/
|
|
|
|
#ifndef auxlib_h
|
|
#define auxlib_h
|
|
|
|
#include "lua.h"
|
|
|
|
struct luaL_reg {
|
|
char *name;
|
|
lua_CFunction func;
|
|
};
|
|
|
|
void luaL_openlib (struct luaL_reg *l, int n);
|
|
void luaL_arg_check(int cond, int numarg, char *extramsg);
|
|
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);
|
|
void luaL_verror (char *fmt, ...);
|
|
|
|
|
|
|
|
/* -- private part (only for Lua modules */
|
|
|
|
int luaI_findstring (char *name, char *list[]);
|
|
|
|
|
|
#endif
|