60 lines
2.2 KiB
C
60 lines
2.2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* str__t_str_test.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: bgoulard <bgoulard@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/05/25 17:42:08 by bgoulard #+# #+# */
|
|
/* Updated: 2024/05/31 13:33:22 by bgoulard ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef STR__T_STR_TEST_H
|
|
# define STR__T_STR_TEST_H
|
|
|
|
int test_string_append_c(void);
|
|
int test_string_append_n(void);
|
|
int test_string_append_sn(void);
|
|
int test_string_append_s(void);
|
|
int test_string_append(void);
|
|
int test_string_cap(void);
|
|
int test_string_chr(void);
|
|
int test_string_clear(void);
|
|
int test_string_cmp_str(void);
|
|
int test_string_cmp(void);
|
|
int test_string_destroy(void);
|
|
int test_string_from_c(void);
|
|
int test_string_from_n(void);
|
|
int test_string_from_sn(void);
|
|
int test_string_from_s(void);
|
|
int test_string_from(void);
|
|
int test_string_get(void);
|
|
int test_string_insert_c(void);
|
|
int test_string_insert_n(void);
|
|
int test_string_insert_sn(void);
|
|
int test_string_insert_s(void);
|
|
int test_string_insert(void);
|
|
int test_string_len(void);
|
|
int test_string_ncmp_str(void);
|
|
int test_string_ncmp(void);
|
|
int test_string_new(void);
|
|
int test_string_offset(void);
|
|
int test_string_put(void);
|
|
int test_string_rchr(void);
|
|
int test_string_replace_chr(void);
|
|
int test_string_replace(void);
|
|
int test_string_reserve(void);
|
|
int test_string_resize(void);
|
|
int test_string_roffset(void);
|
|
int test_string_set_inplace(void);
|
|
int test_string_set_n(void);
|
|
int test_string_set(void);
|
|
int test_string_shrink(void);
|
|
int test_string_substr(void);
|
|
int test_string_to_str(void);
|
|
int test_string_trim_chr(void);
|
|
int test_string_trimstr(void);
|
|
int test_string_trim(void);
|
|
|
|
#endif /* STR__T_STR_TEST_H */
|