20 lines
No EOL
1 KiB
C
20 lines
No EOL
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* mem_compare.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/06 11:16:02 by maiboyer #+# #+# */
|
|
/* Updated: 2023/12/09 16:21:14 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef MEM_COMPARE_H
|
|
# define MEM_COMPARE_H
|
|
|
|
# include "me/types.h"
|
|
|
|
t_i32 mem_compare(const void *lhs, const void *rhs, t_usize count);
|
|
|
|
#endif |