summaryrefslogtreecommitdiff
path: root/src/lgc.h
diff options
context:
space:
mode:
authorLua Team <team@lua.org>1998-07-11 12:00:00 +0000
committerrepogen <>1998-07-11 12:00:00 +0000
commit377347776f1f3d820f92151f70bec667f96d5e6b (patch)
treecdb3ba26158df33547dfe765547177afcee119d1 /src/lgc.h
parent4f8c5d0f284e1f4da717aea5008915f185cd2e05 (diff)
downloadlua-github-3.1.tar.gz
Lua 3.13.1
Diffstat (limited to 'src/lgc.h')
-rw-r--r--src/lgc.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/lgc.h b/src/lgc.h
new file mode 100644
index 00000000..38b09553
--- /dev/null
+++ b/src/lgc.h
@@ -0,0 +1,21 @@
+/*
+** $Id: lgc.h,v 1.4 1997/12/01 20:31:25 roberto Exp $
+** Garbage Collector
+** See Copyright Notice in lua.h
+*/
+
+#ifndef lgc_h
+#define lgc_h
+
+
+#include "lobject.h"
+
+
+void luaC_checkGC (void);
+TObject* luaC_getref (int ref);
+int luaC_ref (TObject *o, int lock);
+void luaC_hashcallIM (Hash *l);
+void luaC_strcallIM (TaggedString *l);
+
+
+#endif