 |
» |
|
|
|
The getstr set of routines is used to get a character string from keyboard. Syntax |  |
#include <curses.h>
int getstr(char *str);
int wgetstr(WINDOW *win, char *str);
int wgetnstr(WINDOW *win, char *str, int n);
int mvgetstr(int y, int x, char *str);
int mvwgetch(WINDOW *win, int y, int x, char *str);
|
Parameters |  |
- n
The maximum number of characters to read from input.
- str
A pointer to the area where the character string is to be placed.
- x
The x (column) coordinate of starting position of character string to be read.
- y
The y (row) coordinate of starting position of character string to be read.
- win
A pointer to the window associated with the terminal
from which the character is to be read.
Return Values |  |
- OK
Successful completion.
- ERR
An error occurred.
Implementation Considerations |  |
The getstr(), mvgetstr(), mvwgetstr(), and wgetstr() routines are identical to XPG/3.
The wgetnstr() routine is a UNIX System V implementation. See Also |  |
wgetch() Portability |  |
The getstr(), mvgetstr(), mvwgetstr(), and wgetstr() routines conform to HP-UX, UNIX System V, and XPG/3. The wgetnstr() routine conforms to UNIX System V.
|