Files
42-LibUnit/real_tests/ft_atoi/04_null.c

7 lines
82 B
C

#include "../tests.h"
int atoi_null_test(void)
{
return (ft_atoi(NULL) == 0);
}