-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_puterr.c
18 lines (16 loc) · 972 Bytes
/
ft_puterr.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_puterr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: chrhuang <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/11/13 15:53:35 by chrhuang #+# #+# */
/* Updated: 2018/11/21 10:19:16 by chrhuang ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_puterr(char const *str)
{
ft_putstr_fd(str, 2);
}