Imported from ../lua-3.0.tar.gz.
[lua.git] / include / lualib.h
blob38baf45ef9e8fcb732c107fef3b890f39d59b27f
1 /*
2 ** Libraries to be used in LUA programs
3 ** Grupo de Tecnologia em Computacao Grafica
4 ** TeCGraf - PUC-Rio
5 ** $Id: lualib.h,v 1.13 1997/03/26 22:23:15 roberto Exp $
6 */
8 #ifndef lualib_h
9 #define lualib_h
11 #include "lua.h"
13 void iolib_open (void);
14 void strlib_open (void);
15 void mathlib_open (void);
19 /* auxiliar functions (private) */
21 char *luaI_addchar (int c);
22 void luaI_emptybuff (void);
23 void luaI_addquoted (char *s);
25 char *luaL_item_end (char *p);
26 int luaL_singlematch (int c, char *p);
28 #endif