This commit is contained in:
Jeremy FLEURY
2019-07-17 11:22:24 +02:00
commit 748d10f4f3
174 changed files with 8953 additions and 0 deletions

16
libft/printf/ft_null.c Normal file
View File

@@ -0,0 +1,16 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_null.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: igarbuz <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/01/24 22:17:39 by igarbuz #+# #+# */
/* Updated: 2019/01/24 22:17:43 by igarbuz ### ########.fr */
/* */
/* ************************************************************************** */
const char *ft_null(void)
{
return ("(null)");
}