| Corewar documentation 1.0.0
    | 
The file containing the my_strstr function. More...
#include "my.h"| Functions | |
| char * | my_strstr (char *str, char const *to_find) | 
| Search a string (to_find) on another (str) and returns the address of the first occurrence. | |
The file containing the my_strstr function.
| char * my_strstr | ( | char * | str, | 
| char const * | to_find ) | 
Search a string (to_find) on another (str) and returns the address of the first occurrence.
| str | The string to be scanned | 
| to_find | The string to search in |