26 lines
1.2 KiB
C
26 lines
1.2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* actual_main.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/02/09 15:10:39 by maiboyer #+# #+# */
|
|
/* Updated: 2024/02/09 15:26:33 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "app/state.h"
|
|
#include "me/printf/printf.h"
|
|
#include "me/string/str_n_compare.h"
|
|
#include "me/types.h"
|
|
|
|
int main_normal(t_i32 argc, t_str argv[]);
|
|
int main_checker(t_i32 argc, t_str argv[]);
|
|
|
|
int main(t_i32 argc, t_str argv[])
|
|
{
|
|
if (BONUS)
|
|
return (main_checker(argc, argv));
|
|
return (main_normal(argc, argv));
|
|
}
|