transition from printf to write
This commit is contained in:
6
utils/putchar.c
Normal file
6
utils/putchar.c
Normal file
@ -0,0 +1,6 @@
|
||||
#include <unistd.h>
|
||||
|
||||
void ft_putchar(char c)
|
||||
{
|
||||
write(1, &c, 1);
|
||||
}
|
||||
Reference in New Issue
Block a user