piscine-rush02/ex00/ft_lib.c

26 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lib.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/04/01 07:13:31 by tischmid #+# #+# */
/* Updated: 2023/04/01 07:13:58 by tischmid ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_lib.h"
void ft_putchar(char c)
{
write(1, &c, 1);
}
void ft_puts(char *str)
{
while (*str)
ft_putchar(*str++);
ft_putchar('\n');
}