This website requires JavaScript.
Explore
Help
Sign In
bumbread
/
ciabatta
mirror of
https://github.com/flysand7/ciabatta.git
Watch
1
Fork
You've already forked ciabatta
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
c2cc9e5129
ciabatta
/
test
/
test_io.c
9 lines
112 B
C
Raw
Normal View
History
Unescape
Escape
fputc
2022-06-24 02:43:47 +00:00
#
include
<stdio.h>
int
main
(
)
{
Implement caching for file streams
2022-06-24 03:54:51 +00:00
for
(
int
i
=
0
;
i
!
=
512
;
+
+
i
)
fputc
(
'
Z
'
,
stdout
)
;
fputc
2022-06-24 02:43:47 +00:00
return
0
;
}