/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strnstr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: dkaiser */ /* int main(void) */ /* { */ /* char haystack[] = "abc"; */ /* char needle[] = "abcde"; */ /* size_t len = 5; */ /* printf("strnstr: %s\n", strnstr(haystack, needle, len)); */ /* printf("ft_strnstr: %s\n", ft_strnstr(haystack, needle, len)); */ /* } */