blob: d29a940203b2ba30c798497c8efcc1a3b13628b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_putstr.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2019/10/13 09:05:27 by rbousset #+# ## ## #+# */
/* Updated: 2019/10/13 09:07:45 by rbousset ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include "libft.h"
#include <unistd.h>
int
ft_putstr(const char *s)
{
return (write(1, s, ft_strlen(s)));
}
|