new (internal?) functions to manipulate userdata

This commit is contained in:
Roberto Ierusalimschy
1997-03-26 19:23:15 -03:00
parent 9e9e2ea287
commit 264f8c5e7b
3 changed files with 72 additions and 26 deletions

View File

@@ -2,7 +2,7 @@
** Libraries to be used in LUA programs
** Grupo de Tecnologia em Computacao Grafica
** TeCGraf - PUC-Rio
** $Id: lualib.h,v 1.11 1997/03/17 17:01:10 roberto Exp roberto $
** $Id: lualib.h,v 1.12 1997/03/18 15:30:50 roberto Exp roberto $
*/
#ifndef lualib_h
@@ -19,10 +19,11 @@ void mathlib_open (void);
/* auxiliar functions (private) */
char *luaI_addchar (int c);
void luaI_emptybuff (void);
void luaI_addquoted (char *s);
char *item_end (char *p);
int singlematch (int c, char *p);
char *luaL_item_end (char *p);
int luaL_singlematch (int c, char *p);
#endif