20 lines
1,022 B
C
20 lines
1,022 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* str_compare.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/04 18:53:47 by maiboyer #+# #+# */
|
|
/* Updated: 2024/05/04 18:37:55 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef STR_COMPARE_H
|
|
# define STR_COMPARE_H
|
|
|
|
# include "me/types.h"
|
|
|
|
bool str_compare(t_const_str lhs, t_const_str rhs);
|
|
|
|
#endif
|