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