64 lines
2.1 KiB
C
64 lines
2.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* str__mem_tests.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: bgoulard <bgoulard@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/05/25 12:26:09 by bgoulard #+# #+# */
|
|
/* Updated: 2024/05/30 12:40:33 by bgoulard ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef STR__MEM_TESTS_H
|
|
# define STR__MEM_TESTS_H
|
|
|
|
/// @file: tests/ft_string/ft_mem/tests_apply_2d
|
|
int test_apply_2d(void);
|
|
|
|
/// @file: tests/ft_string/ft_mem/tests_bzero.c
|
|
int test_bzero(void);
|
|
|
|
/// @file: tests/ft_string/ft_mem/tests_calloc.c
|
|
int test_calloc(void);
|
|
|
|
/// @file: tests/ft_string/ft_mem/tests_fd_to_buff.c
|
|
int test_fd_to_buff(void);
|
|
|
|
/// @file: tests/ft_string/ft_mem/tests_free.c
|
|
int test_free(void);
|
|
|
|
/// @file: tests/ft_string/ft_mem/tests_free_2d.c
|
|
int test_free_2d(void);
|
|
|
|
/// @file: tests/ft_string/ft_mem/tests_len_2d.c
|
|
int test_len_2d(void);
|
|
|
|
/// @file: tests/ft_string/ft_mem/tests_memchr.c
|
|
int test_memchr(void);
|
|
|
|
/// @file: tests/ft_string/ft_mem/tests_memcmp.c
|
|
int test_memcmp(void);
|
|
|
|
/// @file: tests/ft_string/ft_mem/tests_memcpy.c
|
|
int test_memcpy(void);
|
|
|
|
/// @file: tests/ft_string/ft_mem/tests_memmap.c
|
|
int test_memmap(void);
|
|
|
|
/// @file: tests/ft_string/ft_mem/tests_memmove.c
|
|
int test_memmove(void);
|
|
|
|
/// @file: tests/ft_string/ft_mem/tests_memset.c
|
|
int test_memset(void);
|
|
|
|
/// @file: tests/ft_string/ft_mem/tests_qsort.c
|
|
int test_qsort(void);
|
|
|
|
/// @file: tests/ft_string/ft_mem/tests_realloc.c
|
|
int test_realloc(void);
|
|
|
|
/// @file: tests/ft_string/ft_mem/tests_swap.c
|
|
int test_swap(void);
|
|
|
|
#endif /* STR__MEM_TESTS_H */
|