added bgoulard lib + made lib sources in their own directory in build/ for readability
This commit is contained in:
parent
83cc8419a0
commit
0a390934d6
457 changed files with 21807 additions and 61 deletions
57
libft_personal/include/tests/ll_tests.h
Normal file
57
libft_personal/include/tests/ll_tests.h
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* 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 */
|
||||
Loading…
Add table
Add a link
Reference in a new issue