lua/lualib.h

23 lines
479 B
C
Raw Normal View History

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
** $Id: lualib.h,v 1.3 1994/12/13 15:59:16 roberto Exp roberto $
1993-07-28 06:18:00 -07:00
*/
#ifndef lualib_h
#define lualib_h
void iolib_open (void);
void strlib_open (void);
void mathlib_open (void);
/* auxiliar functions (private) */
void lua_arg_error(char *funcname);
char *lua_check_string (int numArg, char *funcname);
float lua_check_number (int numArg, char *funcname);
1993-07-28 06:18:00 -07:00
#endif
1993-12-17 11:01:46 -08:00