home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Programmer's Library 1.3
/
Microsoft-Programers-Library-v1.3.iso
/
sampcode
/
c
/
other
/
learn
/
wrap.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1988-10-25
|
337 b
|
21 lines
/* WRAP.C illustrates:
* _wrapon
*/
#include <conio.h>
#include <graph.h>
main()
{
_wrapon( _GWRAPON );
while( !kbhit() )
_outtext( "Wrap on! " );
getch();
_clearscreen( _GCLEARSCREEN );
_wrapon( _GWRAPOFF );
while( !kbhit() )
_outtext( "Wrap off!" );
getch();
}