cub3d/libft/tests/mandatory/atoi/test13.c
2023-10-26 19:11:30 +02:00

27 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* :::::::: */
/* test13.c :+: :+: */
/* +:+ */
/* By: houtworm <codam@houtworm.net> +#+ */
/* +#+ */
/* Created: 2023/02/21 02:01:57 by houtworm #+# #+# */
/* Updated: 2023/10/18 17:08:59 by houtworm ######## odam.nl */
/* */
/* ************************************************************************** */
#include "../../tmp/libft.h"
#include <stdio.h>
int main(void)
{
char *str;
int a;
str = "+1234";
a = 1234;
if (ft_atoi(str) != a)
return (1);
return (0);
}