Add atoi tests

This commit is contained in:
2026-01-24 17:06:45 +01:00
parent 6e652d3b24
commit 2f039c273c
10 changed files with 75 additions and 11 deletions

View File

@@ -0,0 +1,6 @@
#include "../tests.h"
int atoi_sigbus_test(void)
{
return (ft_atoi((void *) -2147483648));
}