index
:
luis
master
Trying to survive La Piscine
magh
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
day2
/
ex00
/
ft_putchar.c
blob: 31d19b55f5669901f07594fe019a7f75a7b7e17a (
plain
)
1
2
3
4
5
6
#include <unistd.h> void ft_putchar(char c) { write(1, &c, 1); }