aboutsummaryrefslogtreecommitdiff
path: root/functions_reference/ref_ft_list_remove_if.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-04-13 15:03:29 +0200
committerCharles <sircharlesaze@gmail.com>2020-04-13 15:03:29 +0200
commit4388cc2d74f1ee8930ca1baaeeea67da925f8a2c (patch)
tree5feee2181fc8875d22ccb1dacdc0710f23bd9169 /functions_reference/ref_ft_list_remove_if.c
parent1eb2d4832a590c809e38840f970b4506661c89cf (diff)
downloadlibasm_test-4388cc2d74f1ee8930ca1baaeeea67da925f8a2c.tar.gz
libasm_test-4388cc2d74f1ee8930ca1baaeeea67da925f8a2c.tar.bz2
libasm_test-4388cc2d74f1ee8930ca1baaeeea67da925f8a2c.zip
Added argument precsion in error message for all function but ft_strdup, Changed function prototype style
Diffstat (limited to 'functions_reference/ref_ft_list_remove_if.c')
-rw-r--r--functions_reference/ref_ft_list_remove_if.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/functions_reference/ref_ft_list_remove_if.c b/functions_reference/ref_ft_list_remove_if.c
index c99cbea..90bd1cc 100644
--- a/functions_reference/ref_ft_list_remove_if.c
+++ b/functions_reference/ref_ft_list_remove_if.c
@@ -6,15 +6,14 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/08 03:20:03 by cacharle #+# #+# */
-/* Updated: 2020/02/08 20:02:25 by cacharle ### ########.fr */
+/* Updated: 2020/04/13 15:01:02 by charles ### ########.fr */
/* */
/* ************************************************************************** */
#include "libasm_test.h"
-void
-ref_ft_list_remove_if(t_list **begin_list, void *data_ref,
- int (*cmp)(), void (*free_fct)(void *))
+void ref_ft_list_remove_if(t_list **begin_list, void *data_ref,
+ int (*cmp)(), void (*free_fct)(void *))
{
t_list *saved_next;