29 lines
1.0 KiB
C
29 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ex04.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: achubuko <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/30 22:27:20 by achubuko #+# #+# */
|
|
/* Updated: 2023/11/30 22:53:40 by achubuko ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
#include <unity.h>
|
|
|
|
char *ft_strstr(char *str, char *to_find);
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
UNITY_BEGIN();
|
|
return (UNITY_END());
|
|
}
|