corrections to scren bar rendering offsets
[AROS.git] / test / clib / stdin1.c
blob45ba163e337dfff1830cf9ae208b887a0d74eedd
1 #include <proto/dos.h>
2 #include <dos/stdio.h>
4 int main(void)
6 FPuts(Output(), "The command line arguments should be printed on next line\n");
8 UBYTE c;
9 BPTR in = Input(), out = Output();
10 for (c = FGetC(in);
11 c != '\n' && c != ENDSTREAMCH;
12 c = FGetC(in)
14 FPutC(out, c);
15 FPutC(out, '\n');
17 return 0;