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.
37 lines
584 B
37 lines
584 B
/*
|
|
** $Id: lualib.h,v 1.1 1997/09/16 19:25:59 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);
|
|
|
|
|
|
|
|
|
|
/* To keep compatibility with old versions */
|
|
|
|
#define iolib_open lua_iolibopen
|
|
#define strlib_open lua_strlibopen
|
|
#define mathlib_open lua_mathlibopen
|
|
|
|
|
|
|
|
/* auxiliar functions (private) */
|
|
|
|
char *luaI_addchar (int c);
|
|
void luaI_emptybuff (void);
|
|
|
|
int luaI_singlematch (int c, char *p, char **ep);
|
|
|
|
#endif
|
|
|
|
|