26 lines
1.2 KiB
C
26 lines
1.2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* pair_tests.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: bgoulard <bgoulard@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/06/24 00:30:00 by bgoulard #+# #+# */
|
|
/* Updated: 2024/07/06 17:11:02 by bgoulard ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PAIR_TESTS_H
|
|
# define PAIR_TESTS_H
|
|
|
|
int tests_pair_destroy(void);
|
|
int test_pair_set(void);
|
|
int test_pair_new(void);
|
|
int test_pair_second(void);
|
|
int test_pair_first(void);
|
|
int test_pair_destroy(void);
|
|
int test_pair_cmp(void);
|
|
int test_pair_cmp_first(void);
|
|
int test_pair_cmp_second(void);
|
|
|
|
#endif /* PAIR_TESTS_H */
|