Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Zortech C++ 3.0r4 - <b>disp_eeop</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
disp_eeop

Usage

   #include <disp.h>
   void disp_eeop(void);

Description

   Erases from the current output position to the end of the screen. Uses
   the currently set attribute. The current output position may not be the
   same as the current cursor position,unless output has been forced to go
   through the BIOS by a call to disp_usebios, or disp_flush has been called

   to explicitly update the cursor position.

Example 

   /* clears the screen */
   #include <disp.h>
   #include <stdlib.h>

   int main()
   {
       disp_open();
       disp_move(0,0);
       disp_eeop();
       disp_close();
       return EXIT_SUCCESS;
   }

See Also

   Display package, disp_eeol, disp_flush, disp_setattr




See Also: disp_eeol disp_flush disp_setattr

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson