/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* check_leaks.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/06 18:14:36 by cacharle #+# #+# */
/* Updated: 2020/07/08 18:14:37 by ykoh ### ########.fr */
/* */
/* ************************************************************************** */
#include <limits.h>
#include "header.h"
int main()
{
ft_printf("This is a simple test.");
ft_printf("This is a simple test.\nSecond sentence.\n");
ft_printf("");
ft_printf("\n");
ft_printf("%s", "abc");
ft_printf("111%s333", "222");
ft_printf("%s333", "222");
ft_printf("111%s", "222");
ft_printf("{%s}", 0);
ft_printf("{%s}"<
|