mirror of
https://github.com/DavidGailleton/42-LibUnit.git
synced 2026-03-14 11:56:53 +01:00
20 lines
992 B
C
20 lines
992 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* 03_sigsegv.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: dgaillet <dgaillet@student.42lyon.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2026/01/24 17:23:10 by dgaillet #+# #+# */
|
|
/* Updated: 2026/01/24 17:23:11 by dgaillet ### ########lyon.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "../tests.h"
|
|
#include <stdlib.h>
|
|
|
|
int atoi_sigsegv_test(void)
|
|
{
|
|
return (ft_atoi(NULL));
|
|
}
|