libft
ft_putstr.c
Go to the documentation of this file.
1 /* ************************************************************************** */
3 /* */
4 /* ::: :::::::: */
5 /* ft_putstr.c :+: :+: :+: */
6 /* +:+ +:+ +:+ */
7 /* By: unite <marvin@42.fr> +#+ +:+ +#+ */
8 /* +#+#+#+#+#+ +#+ */
9 /* Created: 2019/09/05 13:50:06 by unite #+# #+# */
10 /* Updated: 2020/07/16 02:53:18 by unite ### ########.fr */
11 /* */
12 /* ************************************************************************** */
13 
14 #include "libft.h"
15 #include <unistd.h>
16 
22 void ft_putstr(char const *s)
23 {
24  ft_putstr_fd(s, 1);
25 }
ft_putstr_fd
void ft_putstr_fd(char const *s, int fd)
Writes a string to a file descriptor.
Definition: ft_putstr_fd.c:23
ft_putstr
void ft_putstr(char const *s)
Writes a string to the standard output.
Definition: ft_putstr.c:22
libft.h