summaryrefslogtreecommitdiff
path: root/Xenogears/test-dlzss.cpp
diff options
context:
space:
mode:
authorPixel <Pixel>2002-05-27 20:05:33 +0000
committerPixel <Pixel>2002-05-27 20:05:33 +0000
commite2fa0166aa8cb791e2e7d8b47adb6e07cbfcc549 (patch)
tree56ae179b0cd9d9abe7be9018d186bd1250cd934f /Xenogears/test-dlzss.cpp
parentaaa76739c3d6dbeb33b1f1027ec93c260fe55b35 (diff)
Fixing LZSS name.
Diffstat (limited to 'Xenogears/test-dlzss.cpp')
-rw-r--r--Xenogears/test-dlzss.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/Xenogears/test-dlzss.cpp b/Xenogears/test-dlzss.cpp
new file mode 100644
index 0000000..ecd0f7e
--- /dev/null
+++ b/Xenogears/test-dlzss.cpp
@@ -0,0 +1,7 @@
+#include <stdio.h>
+#include "lzss.h"
+
+int main(void) {
+ lzss_decomp(0, 1);
+ return 0;
+}