details (for regularity)

This commit is contained in:
Roberto Ierusalimschy
1998-12-15 12:59:43 -02:00
parent 5ca2709ba0
commit 21cff3015a
4 changed files with 26 additions and 29 deletions

8
lua.h
View File

@@ -1,5 +1,5 @@
/*
** $Id: lua.h,v 1.23 1998/06/18 16:51:53 roberto Exp roberto $
** $Id: lua.h,v 1.24 1998/08/21 17:43:44 roberto Exp roberto $
** Lua - An Extensible Extension Language
** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
** e-mail: lua@tecgraf.puc-rio.br
@@ -20,12 +20,12 @@
#define LUA_ANYTAG (-1)
typedef void (*lua_CFunction) (void);
typedef unsigned int lua_Object;
typedef struct lua_State lua_State;
extern lua_State *lua_state;
typedef void (*lua_CFunction) (void);
typedef unsigned int lua_Object;
void lua_open (void);
void lua_close (void);
lua_State *lua_setstate (lua_State *st);