- re-added ft_putchar/putnbr/putstr without fd
- added const for pointers in these functions
This commit is contained in:
7
srcs/ft_putchar.c
Normal file
7
srcs/ft_putchar.c
Normal file
@@ -0,0 +1,7 @@
|
||||
#include "libft.h"
|
||||
|
||||
void ft_putchar(char c)
|
||||
{
|
||||
write(1, &c, 1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user