init
This commit is contained in:
26
C/c04/ex01/ft_putstr.c
Normal file
26
C/c04/ex01/ft_putstr.c
Normal file
@ -0,0 +1,26 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_putstr.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/07/19 15:04:52 by cchauvet #+# #+# */
|
||||
/* Updated: 2022/07/19 15:05:27 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
void ft_putstr(char *str)
|
||||
{
|
||||
while (*str != 0)
|
||||
write(1, str++, 1);
|
||||
}
|
||||
|
||||
/*
|
||||
int main()
|
||||
{
|
||||
ft_putstr("test");
|
||||
}
|
||||
*/
|
Reference in New Issue
Block a user