proxmark3/client/deps/liblua/lualib.h

53 lines
1.1 KiB
C
Raw Normal View History

2013-05-22 02:23:42 +08:00
/*
2024-09-20 22:50:11 +08:00
** $Id: lualib.h $
2013-05-22 02:23:42 +08:00
** Lua standard libraries
** See Copyright Notice in lua.h
*/
#ifndef lualib_h
#define lualib_h
#include "lua.h"
2024-09-20 22:50:11 +08:00
/* version suffix for environment variable names */
#define LUA_VERSUFFIX "_" LUA_VERSION_MAJOR "_" LUA_VERSION_MINOR
2013-05-22 02:23:42 +08:00
2024-09-30 16:36:29 +08:00
LUAMOD_API int (luaopen_base)(lua_State *L);
2013-05-22 02:23:42 +08:00
2024-09-20 22:50:11 +08:00
#define LUA_COLIBNAME "coroutine"
2024-09-30 16:36:29 +08:00
LUAMOD_API int (luaopen_coroutine)(lua_State *L);
2013-05-22 02:23:42 +08:00
2024-09-20 22:50:11 +08:00
#define LUA_TABLIBNAME "table"
2024-09-30 16:36:29 +08:00
LUAMOD_API int (luaopen_table)(lua_State *L);
2013-05-22 02:23:42 +08:00
2024-09-20 22:50:11 +08:00
#define LUA_IOLIBNAME "io"
2024-09-30 16:36:29 +08:00
LUAMOD_API int (luaopen_io)(lua_State *L);
2013-05-22 02:23:42 +08:00
2024-09-20 22:50:11 +08:00
#define LUA_OSLIBNAME "os"
2024-09-30 16:36:29 +08:00
LUAMOD_API int (luaopen_os)(lua_State *L);
2013-05-22 02:23:42 +08:00
2024-09-20 22:50:11 +08:00
#define LUA_STRLIBNAME "string"
2024-09-30 16:36:29 +08:00
LUAMOD_API int (luaopen_string)(lua_State *L);
2013-05-22 02:23:42 +08:00
2024-09-20 22:50:11 +08:00
#define LUA_UTF8LIBNAME "utf8"
2024-09-30 16:36:29 +08:00
LUAMOD_API int (luaopen_utf8)(lua_State *L);
2013-05-22 02:23:42 +08:00
2024-09-20 22:50:11 +08:00
#define LUA_MATHLIBNAME "math"
2024-09-30 16:36:29 +08:00
LUAMOD_API int (luaopen_math)(lua_State *L);
2013-05-22 02:23:42 +08:00
2024-09-20 22:50:11 +08:00
#define LUA_DBLIBNAME "debug"
2024-09-30 16:36:29 +08:00
LUAMOD_API int (luaopen_debug)(lua_State *L);
2013-05-22 02:23:42 +08:00
2024-09-20 22:50:11 +08:00
#define LUA_LOADLIBNAME "package"
2024-09-30 16:36:29 +08:00
LUAMOD_API int (luaopen_package)(lua_State *L);
2013-05-22 02:23:42 +08:00
2024-09-20 22:50:11 +08:00
/* open all previous libraries */
2024-09-30 16:36:29 +08:00
LUALIB_API void (luaL_openlibs)(lua_State *L);
2013-05-22 02:23:42 +08:00
#endif