Add lz decompression code

Also add byte search code
This commit is contained in:
2020-06-15 22:58:33 -04:00
parent 408b2903f2
commit 6bafa6a22e
4 changed files with 177 additions and 17 deletions

7
include/search.h Normal file
View File

@@ -0,0 +1,7 @@
#ifndef SEARCH_H
#define SEARCH_H
int BM_search(char *txt, int n, char *pat, int m);
#endif