Files
Anemone3DS/include/search.h
Alex Taber 6bafa6a22e Add lz decompression code
Also add byte search code
2020-06-15 23:10:30 -04:00

8 lines
102 B
C

#ifndef SEARCH_H
#define SEARCH_H
int BM_search(char *txt, int n, char *pat, int m);
#endif