tgrekov-libft
HIVE libft Oct 2023
Loading...
Searching...
No Matches
ft_putchar_fd.c
Go to the documentation of this file.
1/* ************************************************************************** */
2/* */
3/* ::: :::::::: */
4/* ft_putchar_fd.c :+: :+: :+: */
5/* +:+ +:+ +:+ */
6/* By: tgrekov <tgrekov@student.hive.fi> +#+ +:+ +#+ */
7/* +#+#+#+#+#+ +#+ */
8/* Created: 2023/10/28 00:04:29 by tgrekov #+# #+# */
9/* Updated: 2023/11/04 22:47:12 by tgrekov ### ########.fr */
10/* */
11/* ************************************************************************** */
12
20#include "libft.h"
21
28void ft_putchar_fd(char c, int fd)
29{
30 write(fd, &c, 1);
31}
void ft_putchar_fd(char c, int fd)
Write character c to file descriptor fd.