summaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua.h b/lua.h
index 66d0f1dd..c30bd4cf 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.20 1998/06/05 22:17:44 roberto Exp roberto $ 2** $Id: lua.h,v 1.21 1998/06/06 21:05:52 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil 4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
5** e-mail: lua@tecgraf.puc-rio.br 5** e-mail: lua@tecgraf.puc-rio.br
@@ -41,7 +41,7 @@ void lua_settag (int tag); /* In: object */
41void lua_error (char *s); 41void lua_error (char *s);
42int lua_dofile (char *filename); /* Out: returns */ 42int lua_dofile (char *filename); /* Out: returns */
43int lua_dostring (char *string); /* Out: returns */ 43int lua_dostring (char *string); /* Out: returns */
44int lua_dobuffer (char *buff, int size); 44int lua_dobuffer (char *buff, int size, char *name);
45 /* Out: returns */ 45 /* Out: returns */
46int lua_callfunction (lua_Object f); 46int lua_callfunction (lua_Object f);
47 /* In: parameters; Out: returns */ 47 /* In: parameters; Out: returns */