mirror of
https://github.com/CrazyRedMachine/popnhax.git
synced 2024-11-14 17:57:36 +01:00
10 lines
521 B
C
10 lines
521 B
C
#ifndef __SEARCH_H__
|
|
#define __SEARCH_H__
|
|
|
|
int search(char *haystack, size_t haystack_size, const char *needle, size_t needle_size, size_t orig_offset);
|
|
int search_debug(char *haystack, size_t haystack_size, const char *needle, size_t needle_size, size_t orig_offset);
|
|
int wildcard_search(char *haystack, size_t haystack_size, const char *needle, size_t needle_size, size_t orig_offset);
|
|
int wildcard_search_debug(char *haystack, size_t haystack_size, const char *needle, size_t needle_size, size_t orig_offset);
|
|
|
|
#endif
|