summaryrefslogtreecommitdiff
path: root/Xenogears/test-lz77.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Xenogears/test-lz77.cpp')
-rw-r--r--Xenogears/test-lz77.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/Xenogears/test-lz77.cpp b/Xenogears/test-lz77.cpp
new file mode 100644
index 0000000..8efce98
--- /dev/null
+++ b/Xenogears/test-lz77.cpp
@@ -0,0 +1,7 @@
+#include <stdio.h>
+#include "lz77.h"
+
+int main(void) {
+ lz77_comp(0, 1);
+ return 0;
+}