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

  1. NAME
  2.     winsch() insch() mvinsch() mvwinsch() - insert a character
  3.  
  4. SYNOPSIS
  5.     #include <curses.h>
  6.     #include <curspriv.h>
  7.  
  8.     int winsch(win, c)
  9.     WINDOW *win;
  10.     char c;
  11.  
  12.     int insch(c)
  13.     char c;
  14.  
  15.     int mvinsch(y,x,c)
  16.     int y;
  17.     int x;
  18.     char c;
  19.  
  20.     int mvwinsch(win,y,x,c)
  21.     WINDOW *win;
  22.     int y;
  23.     int x;
  24.     char c;
  25.  
  26. DESCRIPTION
  27.     winsch() inserts character 'c' at the cursor position in  
  28.     window 'win'. The cursor is advanced.  
  29.  
  30.     insch() inserts character 'c' at the cursor position in  
  31.     stdscr. The cursor is advanced.  
  32.  
  33.     mvinsch() moves the stdscr cursor to a new position, then  
  34.     inserts character 'c' at the cursor position in stdscr. The  
  35.     cursor is advanced.  
  36.  
  37.     mvwinsch() moves the cursor of window 'win' to a new posi-  
  38.     tion, then inserts character 'c' at the cursor position in  
  39.     window 'win'. The cursor is advanced.  
  40.  
  41. EXAMPLES
  42.  
  43. SEE ALSO
  44.     waddch(), wmove()
  45.  
  46. BUGS
  47.