/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_split.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: dkaiser */ /* int main() */ /* { */ /* char s[] = " split this for me !"; */ /* char **split = ft_split(s, ' '); */ /* if (split) { */ /* while(*split) { */ /* printf("%s\n", *split); */ /* split++; */ /* } */ /* } */ /* } */