mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
29 lines
469 B
C
29 lines
469 B
C
/*
|
|
** $Id$
|
|
** Lua standard libraries
|
|
** See Copyright Notice in lua.h
|
|
*/
|
|
|
|
|
|
#ifndef lualib_h
|
|
#define lualib_h
|
|
|
|
#include "engine/lua/lua.h"
|
|
|
|
void lua_iolibopen();
|
|
void lua_strlibopen();
|
|
void lua_mathlibopen();
|
|
|
|
// To keep compatibility with old versions
|
|
|
|
#define iolib_open lua_iolibopen
|
|
#define strlib_open lua_strlibopen
|
|
#define mathlib_open lua_mathlibopen
|
|
|
|
// Auxiliary functions (private)
|
|
|
|
int32 luaI_singlematch(int32 c, const char *p, const char **ep);
|
|
|
|
#endif
|
|
|