popnhax/util/search.h

7 lines
161 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);
#endif