mirror of https://github.com/lua/lua.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
636 B
36 lines
636 B
/*
|
|
** $Id: lualib.h,v 1.6 1999/05/05 19:23:11 roberto Exp roberto $
|
|
** Lua standard libraries
|
|
** See Copyright Notice in lua.h
|
|
*/
|
|
|
|
|
|
#ifndef lualib_h
|
|
#define lualib_h
|
|
|
|
#include "lua.h"
|
|
|
|
void lua_iolibopen (void);
|
|
void lua_strlibopen (void);
|
|
void lua_mathlibopen (void);
|
|
void lua_dblibopen (void);
|
|
|
|
|
|
void lua_userinit (void);
|
|
|
|
|
|
/* To keep compatibility with old versions */
|
|
|
|
#define iolib_open lua_iolibopen
|
|
#define strlib_open lua_strlibopen
|
|
#define mathlib_open lua_mathlibopen
|
|
|
|
|
|
|
|
/* Auxiliary functions (private) */
|
|
|
|
const char *luaI_classend (const char *p);
|
|
int luaI_singlematch (int c, const char *p, const char *ep);
|
|
|
|
#endif
|
|
|
|
|