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

7
lmem.h
View File

@@ -1,5 +1,5 @@
/* /*
** $Id: lmem.h,v 1.4 1997/12/01 20:30:44 roberto Exp roberto $ ** $Id: lmem.h,v 1.5 1997/12/17 20:48:58 roberto Exp roberto $
** Interface to Memory Manager ** Interface to Memory Manager
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
@@ -8,10 +8,7 @@
#define lmem_h #define lmem_h
#ifndef NULL #include <stdlib.h>
#define NULL 0
#endif
/* memory error messages */ /* memory error messages */
#define codeEM "code size overflow" #define codeEM "code size overflow"

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 ** Lua - An Extensible Extension Language
** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil ** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
** e-mail: lua@tecgraf.puc-rio.br ** e-mail: lua@tecgraf.puc-rio.br
@@ -20,12 +20,12 @@
#define LUA_ANYTAG (-1) #define LUA_ANYTAG (-1)
typedef void (*lua_CFunction) (void);
typedef unsigned int lua_Object;
typedef struct lua_State lua_State; typedef struct lua_State lua_State;
extern 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_open (void);
void lua_close (void); void lua_close (void);
lua_State *lua_setstate (lua_State *st); lua_State *lua_setstate (lua_State *st);

View File

@@ -1,5 +1,5 @@
/* /*
** $Id: lundump.c,v 1.10 1998/06/25 15:50:09 lhf Exp $ ** $Id: lundump.c,v 1.4 1998/06/25 16:48:44 roberto Exp roberto $
** load bytecodes from files ** load bytecodes from files
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */

View File

@@ -1,5 +1,5 @@
/* /*
** $Id: lundump.h,v 1.7 1998/06/25 15:50:09 lhf Exp $ ** $Id: lundump.h,v 1.4 1998/06/25 16:48:44 roberto Exp roberto $
** load pre-compiled Lua chunks ** load pre-compiled Lua chunks
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */