1
0
mirror of https://github.com/lua/lua.git synced 2025-01-28 06:03:00 +08:00
lua/lualib.h

24 lines
508 B
C
Raw Normal View History

1993-07-28 10:18:00 -03:00
/*
1993-12-17 17:01:46 -02:00
** Libraries to be used in LUA programs
1993-07-28 10:18:00 -03:00
** Grupo de Tecnologia em Computacao Grafica
** TeCGraf - PUC-Rio
** $Id: lualib.h,v 1.5 1996/01/22 17:38:57 roberto Exp roberto $
1993-07-28 10:18:00 -03: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);
double lua_check_number (int numArg, char *funcname);
1996-01-22 15:38:57 -02:00
char *luaI_addchar (int c);
1993-07-28 10:18:00 -03:00
#endif
1993-12-17 17:01:46 -02:00