DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 

curs_scanw(S-osr5)


curs_scanw: scanw, wscanw, mvscanw, mvwscanw, vwscanw -- convert formatted input from a curses widow

Syntax

cc ... -lcurses

#include <curses.h>

int scanw(char *fmt [, arg] . . .); int wscanw(WINDOW *win, char *fmt [, arg] . . .); int mvscanw(int y, int x, char *fmt [, arg] . . .); int mvwscanw(WINDOW *win, int y, int x, char *fmt [, arg] . . .); int vwscanw(WINDOW *win, char *fmt, va_list varglist);

Description

The scanw(S-osr5), wscanw(S-osr5), and mvscanw(S-osr5) routines correspond to scanf(S-osr5). The effect of these routines is as though wgetstr(S-osr5) were called on the window, and the resulting line used as input for the scan. If a field does not map to a variable in the fmt field, it is lost.

The vwscanw(S-osr5) routine is like vwprintw(S-osr5) in that it does a wscanw(S-osr5) using a variable argument list. The third argument is a va_list, a pointer to a list of arguments, as defined in varargs.h.

Return values

vwscanw( ) returns ERR on failure and an integer equal to the number of fields scanned on success.

Applications can interrogate the return value from the routines scanw( ), wscanw( ), mvscanw( ), and mvwscanw(S-osr5) to determine the number of fields which were mapped in the call.

Warning

The header file curses.h automatically includes the header files stdio.h and unctrl.h.

Files


/usr/lib/libcurses.a
the library

See also

curses(S-osr5), curs_getstr(S-osr5), curs_printw(S-osr5), scanf(S-osr5)

Standards conformance

scanw(S-osr5), wscanw(S-osr5), mvscanw(S-osr5), mvwscanw(S-osr5), and vwscanw(S-osr5) are not part of any currently supported standard; they were developed by UNIX System Laboratories, Inc. and are maintained by The SCO Group.
© 2005 The SCO Group, Inc. All rights reserved.
SCO OpenServer Release 6.0.0 -- 02 June 2005