1993-07-28 17:18:00 +04:00
|
|
|
/*
|
1993-12-17 22:01:46 +03:00
|
|
|
** Libraries to be used in LUA programs
|
1993-07-28 17:18:00 +04:00
|
|
|
** Grupo de Tecnologia em Computacao Grafica
|
|
|
|
** TeCGraf - PUC-Rio
|
1997-03-27 01:23:15 +03:00
|
|
|
** $Id: lualib.h,v 1.12 1997/03/18 15:30:50 roberto Exp roberto $
|
1993-07-28 17:18:00 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lualib_h
|
|
|
|
#define lualib_h
|
|
|
|
|
1996-05-01 01:13:55 +04:00
|
|
|
#include "lua.h"
|
|
|
|
|
1993-07-28 17:18:00 +04:00
|
|
|
void iolib_open (void);
|
|
|
|
void strlib_open (void);
|
|
|
|
void mathlib_open (void);
|
|
|
|
|
1995-11-10 20:54:31 +03:00
|
|
|
|
1996-05-01 01:13:55 +04:00
|
|
|
|
1997-03-18 18:30:50 +03:00
|
|
|
/* auxiliar functions (private) */
|
1996-05-01 01:13:55 +04:00
|
|
|
|
1996-01-22 20:38:57 +03:00
|
|
|
char *luaI_addchar (int c);
|
1997-03-27 01:23:15 +03:00
|
|
|
void luaI_emptybuff (void);
|
1996-03-14 18:53:09 +03:00
|
|
|
void luaI_addquoted (char *s);
|
1995-11-10 20:54:31 +03:00
|
|
|
|
1997-03-27 01:23:15 +03:00
|
|
|
char *luaL_item_end (char *p);
|
|
|
|
int luaL_singlematch (int c, char *p);
|
1996-08-06 00:55:24 +04:00
|
|
|
|
1993-07-28 17:18:00 +04:00
|
|
|
#endif
|
1993-12-17 22:01:46 +03:00
|
|
|
|