more tests
This commit is contained in:
parent
d0f8b3e0ad
commit
1bcff515b7
22 changed files with 191 additions and 58 deletions
7
test/io/echo.c
Normal file
7
test/io/echo.c
Normal file
|
@ -0,0 +1,7 @@
|
|||
int getchar();
|
||||
int putchar(int ch);
|
||||
|
||||
int main() {
|
||||
for (char ch; (ch = getchar()) != -1; putchar(ch));
|
||||
putchar('\n');
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue