repo.or.cz
/
minish.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Make programs to escape the special characters
[minish.git]
/
src
/
newline.c
blob
844e78386ae14fb0c4d3385963f1a41554ad4e25
1
#include <stdio.h>
// EOF,putchar
2
#include <stdlib.h>
// EXIT_FAILURE
3
4
int
main
(
void
) {
5
if
(
putchar
(
'
\n
'
) ==
EOF
) {
6
return
EXIT_FAILURE
;
7
}
8
}