gotox gotoy for a conio implementation


/ Published in: C
Save to your folder(s)

For "Borland-style CONIO implementation for MinGW/Dev-C++."
Source for that is at http://conio.cvs.sourceforge.net/viewvc/conio/conio2/
That project's home page is at http://conio.sourceforge.net


Copy this code and paste it in your HTML
  1. void gotox(int x){
  2. __fill_text_info();
  3. gotoxy(x,__text_info.cury);
  4. }
  5.  
  6. void gotoy(int y){
  7. __fill_text_info();
  8. gotoxy(__text_info.curx,y);
  9. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.