57 lines
1.6 KiB
C
57 lines
1.6 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ll_tests.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: bgoulard <bgoulard@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/05/19 16:10:07 by bgoulard #+# #+# */
|
|
/* Updated: 2024/05/19 16:11:24 by bgoulard ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef LL_TESTS_H
|
|
# define LL_TESTS_H
|
|
|
|
int t_ll_add_front(void);
|
|
int t_ll_add_back(void);
|
|
|
|
int t_ll_apply(void);
|
|
int t_ll_apply_range(void);
|
|
int t_ll_apply_range_node(void);
|
|
|
|
int t_ll_clear(void);
|
|
|
|
int t_ll_create(void);
|
|
|
|
int t_ll_copy_node(void);
|
|
int t_ll_copy_list(void);
|
|
|
|
int t_ll_delone(void);
|
|
int t_ll_delete_range(void);
|
|
|
|
int t_ll_find(void);
|
|
|
|
int t_ll_get_datas(void);
|
|
int t_ll_get_nodes(void);
|
|
|
|
int t_ll_end(void);
|
|
int t_ll_at(void);
|
|
|
|
int t_ll_map(void);
|
|
|
|
int t_ll_new(void);
|
|
|
|
int t_ll_push(void);
|
|
int t_ll_push_back(void);
|
|
int t_ll_pop(void);
|
|
int t_ll_pop_back(void);
|
|
|
|
int t_ll_rev(void);
|
|
|
|
int t_ll_size(void);
|
|
int t_ll_size_match(void);
|
|
|
|
int t_ll_subrange(void);
|
|
|
|
#endif /* LL_TESTS_H */
|