mirror of
https://github.com/lua/lua
synced 2024-11-28 23:53:16 +03:00
24 lines
508 B
C
24 lines
508 B
C
/*
|
|
** Libraries to be used in LUA programs
|
|
** Grupo de Tecnologia em Computacao Grafica
|
|
** TeCGraf - PUC-Rio
|
|
** $Id: lualib.h,v 1.5 1996/01/22 17:38:57 roberto Exp roberto $
|
|
*/
|
|
|
|
#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);
|
|
char *luaI_addchar (int c);
|
|
|
|
#endif
|
|
|