-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putchar_fd.c
19 lines (17 loc) · 1 KB
/
ft_putchar_fd.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: asolano- <asolano-@student.42malaga.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/04/27 10:52:39 by asolano- #+# #+# */
/* Updated: 2022/04/27 10:54:43 by asolano- ### ########.fr */
/* */
/* ************************************************************************** */
/*Envía el caracter c al file descriptor especificado*/
#include"libft.h"
void ft_putchar_fd(char c, int fd)
{
write(fd, &c, 1);
}