20 lines
No EOL
1 KiB
C
20 lines
No EOL
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* str_n_compare.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/04 18:53:47 by maiboyer #+# #+# */
|
|
/* Updated: 2023/12/09 16:17:14 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef STR_N_COMPARE_H
|
|
# define STR_N_COMPARE_H
|
|
|
|
# include "me/types.h"
|
|
|
|
t_i32 str_n_compare(t_const_str lhs, t_const_str rhs, t_usize n);
|
|
|
|
#endif |