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
|
1994-08-24 19:29:02 +04:00
|
|
|
** $Id: lualib.h,v 1.1 1993/12/17 19:01:46 celes Exp celes $
|
1993-07-28 17:18:00 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lualib_h
|
|
|
|
#define lualib_h
|
|
|
|
|
1994-08-24 19:29:02 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1993-07-28 17:18:00 +04:00
|
|
|
void iolib_open (void);
|
|
|
|
void strlib_open (void);
|
|
|
|
void mathlib_open (void);
|
|
|
|
|
1994-08-24 19:29:02 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1993-07-28 17:18:00 +04:00
|
|
|
#endif
|
1993-12-17 22:01:46 +03:00
|
|
|
|