fractol/libft/tests/mandatory/atoi/test16.c
2023-10-26 18:33:42 +02:00

28 lines
1.1 KiB
C

/* ************************************************************************** */
/* */
/* :::::::: */
/* test16.c :+: :+: */
/* +:+ */
/* By: djonker <djonker@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2023/02/21 22:31:27 by djonker #+# #+# */
/* Updated: 2023/10/18 17:09:00 by houtworm ######## odam.nl */
/* */
/* ************************************************************************** */
#include "../../tmp/libft.h"
#include <stdio.h>
#include <string.h>
int main(void)
{
char *str;
int a;
memcpy(str, "\0\0\0", 3);
a = 0;
if (ft_atoi(str) != a)
return (1);
return (0);
}