remove inputs
This commit is contained in:
17
libft/ft_putchar_fd.c
Executable file
17
libft/ft_putchar_fd.c
Executable file
@ -0,0 +1,17 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_putchar_fd.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: tomoron <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/11/01 04:10:53 by tomoron #+# #+# */
|
||||
/* Updated: 2024/10/29 20:36:57 by tomoron ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
#include "libft.h"
|
||||
|
||||
void ft_putchar_fd(char c, int fd)
|
||||
{
|
||||
(void) write(fd, &c, 1);
|
||||
}
|
Reference in New Issue
Block a user