home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume1 / 8710 / pc-curses-doc / 3 / delch.m next >
Encoding:
Text File  |  1993-09-02  |  1.1 KB  |  47 lines

  1. NAME
  2.     wdelch() delch() mvdelch() mvwdelch() -  delete a character
  3.  
  4. SYNOPSIS
  5.     #include <curses.h>
  6.     #include <curspriv.h>
  7.  
  8.     int wdelch(win)
  9.     WINDOW *win;
  10.  
  11.     int delch()
  12.  
  13.     int mvdelch(y,x)
  14.     int y;
  15.     int x;
  16.  
  17.     int mvwdelch(win,y,x)
  18.     WINDOW *win;
  19.     int y;
  20.     int x;
  21.  
  22. DESCRIPTION
  23.     wdelch() deletes the character at the window cursor, and the  
  24.     characters to the right of it are shifted left, inserting a  
  25.     space at the last position of the line.  
  26.  
  27.     delch() deletes the character at the stdscr cursor, and the  
  28.     characters to the right of it are shifted left, inserting a  
  29.     space at the last position of the line.  
  30.  
  31.     mvdelch() moves the stdscr cursor to a new position, then  
  32.     deletes the character at the stdscr cursor, and the charac-  
  33.     ters to the right of it are shifted left, inserting a space  
  34.     at the last position of the line.  
  35.  
  36.     mvwdelch() moves the cursor of window 'win' to a new posi-  
  37.     tion, then deletes the character at the stdscr cursor, and  
  38.     the characters to the right of it are shifted left, inser-  
  39.     ting a space at the last position of the line.  
  40.  
  41. EXAMPLES
  42.  
  43. SEE ALSO
  44.     wmove()
  45.  
  46. BUGS
  47.