summaryrefslogtreecommitdiff
path: root/undump.h
diff options
context:
space:
mode:
Diffstat (limited to 'undump.h')
-rw-r--r--undump.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/undump.h b/undump.h
index 1bb6c300..86da43af 100644
--- a/undump.h
+++ b/undump.h
@@ -1,9 +1,12 @@
1/* 1/*
2** undump.h 2** undump.h
3** definitions for lua decompiler 3** definitions for lua decompiler
4** $Id: undump.h,v 1.4 1997/04/14 12:12:40 lhf Exp roberto $ 4** $Id: undump.h,v 1.5 1997/06/16 16:50:22 roberto Exp roberto $
5*/ 5*/
6 6
7#ifndef undump_h
8#define undump_h
9
7#include "func.h" 10#include "func.h"
8#include "zio.h" 11#include "zio.h"
9 12
@@ -21,4 +24,7 @@
21#define TEST_FLOAT 0.123456789e-23 /* a float for testing representation */ 24#define TEST_FLOAT 0.123456789e-23 /* a float for testing representation */
22 25
23 26
27TFunc* luaI_undump1(ZIO* Z);
24int luaI_undump(ZIO* Z); /* load all chunks */ 28int luaI_undump(ZIO* Z); /* load all chunks */
29
30#endif