/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* char_tests.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bgoulard +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/05/23 22:39:35 by bgoulard #+# #+# */ /* Updated: 2024/05/26 12:28:06 by bgoulard ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef CHAR_TESTS_H # define CHAR_TESTS_H /* @file: tests/ft_string/ft_char/test_tolower.c */ int test_ft_tolower(void); /* @file: tests/ft_string/ft_char/test_isalpha.c */ int test_ft_isalpha(void); /* @file: tests/ft_string/ft_char/test_isalnum.c */ int test_ft_isalnum(void); /* @file: tests/ft_string/ft_char/test_puchar.c */ int test_ft_putchar(void); /* @file: tests/ft_string/ft_char/test_ishexdigit.c */ int test_ft_ishexdigit(void); /* @file: tests/ft_string/ft_char/test_isspace.c */ int test_ft_isspace(void); /* @file: tests/ft_string/ft_char/test_isoctdigit.c */ int test_ft_isoctdigit(void); /* @file: tests/ft_string/ft_char/test_isprint.c */ int test_ft_isprint(void); /* @file: tests/ft_string/ft_char/test_toupper.c */ int test_ft_toupper(void); /* @file: tests/ft_string/ft_char/test_isascii.c */ int test_ft_isascii(void); /* @file: tests/ft_string/ft_char/ft_char_tests.c */ int char_tests(void); /* @file: tests/ft_string/ft_char/test_isdigit.c */ int test_ft_isdigit(void); #endif /* CHAR_TESTS_H */