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