| 12345678910111213141516171819202122232425 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* ft_lstiter.c :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@student.42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2017/12/08 14:32:03 by bchanot #+# #+# */
- /* Updated: 2017/12/08 14:33:10 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #include "libft.h"
- void ft_lstiter(t_slist *lst, void (*f)(t_slist *elem))
- {
- t_slist *tmp;
- tmp = lst;
- while (tmp != NULL)
- {
- (*f)(tmp);
- tmp = tmp->next;
- }
- }
|