11 int strpos(
const char *haystack,
const char *needle) {
12 char *p = strstr(haystack, needle);
19 unsigned char strcount(
const char *haystack,
const char *needle) {
20 unsigned char count = 0;
21 const char *pos = haystack;
24 pos = strstr(pos, needle);
unsigned char strcount(const char *haystack, const char *needle)
int strpos(const char *haystack, const char *needle)