-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathft_putstr.c
More file actions
18 lines (16 loc) · 965 Bytes
/
ft_putstr.c
File metadata and controls
18 lines (16 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mimeyer <mimeyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/05/19 11:52:56 by mimeyer #+# #+# */
/* Updated: 2019/08/23 08:43:11 by mimeyer ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putstr(char *str)
{
ft_putstr_fd(str, 1);
}