libft
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: tspoof <tspoof@student.hive.fi> +#+ +:+ +#+ */
7/* +#+#+#+#+#+ +#+ */
8/* Created: 2022/11/06 13:45:38 by tspoof #+# #+# */
9/* Updated: 2022/11/06 14:09:40 by tspoof ### ########.fr */
10/* */
11/* ************************************************************************** */
12
13#include "libft.h"
14
15void ft_putchar_fd(char c, int fd)
16{
17 write(fd, &c, 1);
18}
void ft_putchar_fd(char c, int fd)
Writes char to file.