3
0
mirror of https://github.com/CrazyRedMachine/popnhax.git synced 2024-11-14 17:57:36 +01:00
popnhax/util/search.h

10 lines
521 B
C
Raw Normal View History

2023-07-09 21:34:07 +02:00
#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);
2024-05-01 20:29:47 +02:00
int search_debug(char *haystack, size_t haystack_size, const char *needle, size_t needle_size, size_t orig_offset);
2024-06-07 01:33:25 +02:00
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);
2023-07-09 21:34:07 +02:00
#endif