-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putchar_fd.c
23 lines (22 loc) · 1.06 KB
/
ft_putchar_fd.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: amennad <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/29 16:59:00 by amennad #+# #+# */
/* Updated: 2023/03/30 10:34:13 by amennad ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/**
* @Writes the character to the descriptor
*
* @param c: character to write
* @param fd : file descriptor
*/
void ft_putchar_fd(char c, int fd)
{
write(fd, &c, 1);
}