  | 
»  | 
 | 
  
 | 
 | 
The instr set of routines is used to return a character string (without attributes). Syntax |    |  
 
   #include <curses.h>
   int instr(char *str);
   int winstr(WINDOW *win, char *str);
   int innstr(char *str, int n);
   int winnstr(WINDOW *win, char *str, int n);
   int mvinstr(int y, int x, char *str);
   int mvwinstr(WINDOW *win, int y, int x, char *str);
   int mvinnstr(int y, int x, char *str, int n);
   int mvwinnstr(WINDOW *win, int y, int x, char *str, int n);
  |  
 Parameters |    |  
 - n
  The number of characters  not to exceed when
returning str.
 - str
 A character string to be returned.
 - win
 A pointer to the window in which the string is to be returned. - x
 The x (column) coordinate of the starting position of the string to be returned. - y
 The y (row) coordinate of the starting position of the string to be returned.
 
 Return Values |    |  
 - OK
    Successful completion.
 - ERR
   An error occurred.
 
 Implementation Considerations |    |  
 UNIX System V implementation See Also |    |  
 winch(), winchstr() Portability |    |  
 UNIX System V  
 |