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_eeol</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
disp_eeol

Usage

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

Description

   Erases to the end of the current line from the current ouput position,
   including the character at that position. 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 

   #include <conio.h>
   #include <disp.h>
   #include <stdlib.h>

   int main()
   {
       disp_open();
       disp_move(0,0);
       disp_printf("Press a key to erase this line\n");
       getch();
       disp_move(0,0);
       disp_eeol();
       disp_close();
       return EXIT_SUCCESS;

   }

See Also

   Display package, disp_eeop



See Also: disp_eeop

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