home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD2.iso
/
Programming
/
Misc
/
M2V11-2.LHA
/
modula
/
dice
/
dice.lha
/
dynamic
/
dynamic.lha
/
objsrc
/
dostest.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1991-04-29
|
316 b
|
20 lines
/*
* DOSTEST.C HyperFunction
*/
void
hyper_DosTest()
{
char buf[64];
int n;
Write(Output(), "Give me a line! ", 16);
n = Read(Input(), buf, sizeof(buf)-1);
if (n > 0)
buf[n] = 0;
Write(Output(), "you said: ", 10);
Write(Output(), buf, strlen(buf));
Write(Output(), "\n", 1);
}