mirror of
https://codeberg.org/la-chouette/minishell.git
synced 2025-12-06 07:28:09 +01:00
19 lines
1,015 B
C
19 lines
1,015 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* testutil.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: khais <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/02/13 15:57:21 by khais #+# #+# */
|
|
/* Updated: 2025/03/09 12:36:44 by khais ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef TESTUTIL_H
|
|
# define TESTUTIL_H
|
|
|
|
void assert_strequal(char *str1, char *str2);
|
|
void do_leak_check(void);
|
|
|
|
#endif
|