libft/tests/mandatory/calloc/test6.c
2023-10-26 18:06:04 +02:00

28 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* :::::::: */
/* test6.c :+: :+: */
/* +:+ */
/* By: houtworm <codam@houtworm.net> +#+ */
/* +#+ */
/* Created: 2023/02/21 02:47:24 by houtworm #+# #+# */
/* Updated: 2023/10/18 17:09:08 by houtworm ######## odam.nl */
/* */
/* ************************************************************************** */
#include "../../tmp/libft.h"
#include <stdio.h>
#include <string.h>
int main(void)
{
int rtrn;
char *a;
a = ft_calloc(-1, 1);
rtrn = 0;
if (a)
rtrn = 1;
return (rtrn);
}