blob: 1ed36a5213296212581d90a07d32180c2dbef9ba [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301/****************************************************************************
micky3879b9f5e72025-07-08 18:04:53 -04002 * Copyright 2018-2019,2020 Thomas E. Dickey *
3 * Copyright 1998-2009,2011 Free Software Foundation, Inc. *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304 * *
5 * Permission is hereby granted, free of charge, to any person obtaining a *
6 * copy of this software and associated documentation files (the *
7 * "Software"), to deal in the Software without restriction, including *
8 * without limitation the rights to use, copy, modify, merge, publish, *
9 * distribute, distribute with modifications, sublicense, and/or sell *
10 * copies of the Software, and to permit persons to whom the Software is *
11 * furnished to do so, subject to the following conditions: *
12 * *
13 * The above copyright notice and this permission notice shall be included *
14 * in all copies or substantial portions of the Software. *
15 * *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
19 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
22 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
23 * *
24 * Except as contained in this notice, the name(s) of the above copyright *
25 * holders shall not be used in advertising or otherwise to promote the *
26 * sale, use or other dealings in this Software without prior written *
27 * authorization. *
28 ****************************************************************************/
29
30/****************************************************************************
31 * Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995 *
32 * and: Eric S. Raymond <esr@snark.thyrsus.com> *
33 ****************************************************************************/
34
35/*
36** lib_scanw.c
37**
38** The routines scanw(), wscanw() and friends.
39**
40*/
41
42#include <curses.priv.h>
43
micky3879b9f5e72025-07-08 18:04:53 -040044MODULE_ID("$Id: lib_scanw.c,v 1.19 2020/02/02 23:34:34 tom Exp $")
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053045
46NCURSES_EXPORT(int)
micky3879b9f5e72025-07-08 18:04:53 -040047vwscanw(WINDOW *win, const char *fmt, va_list argp)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053048{
49 char buf[BUFSIZ];
micky3879b9f5e72025-07-08 18:04:53 -040050 int code = ERR;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053051
micky3879b9f5e72025-07-08 18:04:53 -040052 if (wgetnstr(win, buf, (int) sizeof(buf) - 1) != ERR) {
53 if ((code = vsscanf(buf, fmt, argp)) == EOF) {
54 code = ERR;
55 }
56 }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053057
micky3879b9f5e72025-07-08 18:04:53 -040058 return code;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053059}
60
61NCURSES_EXPORT(int)
micky3879b9f5e72025-07-08 18:04:53 -040062vw_scanw(WINDOW *win, const char *fmt, va_list argp)
63{
64 char buf[BUFSIZ];
65 int code = ERR;
66
67 if (wgetnstr(win, buf, (int) sizeof(buf) - 1) != ERR) {
68 if ((code = vsscanf(buf, fmt, argp)) == EOF) {
69 code = ERR;
70 }
71 }
72
73 return code;
74}
75
76NCURSES_EXPORT(int)
77scanw(const char *fmt, ...)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053078{
79 int code;
80 va_list ap;
81
82 T(("scanw(\"%s\",...) called", fmt));
83
84 va_start(ap, fmt);
micky3879b9f5e72025-07-08 18:04:53 -040085 code = vw_scanw(stdscr, fmt, ap);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053086 va_end(ap);
87 return (code);
88}
89
90NCURSES_EXPORT(int)
micky3879b9f5e72025-07-08 18:04:53 -040091wscanw(WINDOW *win, const char *fmt, ...)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053092{
93 int code;
94 va_list ap;
95
Steve Kondikae271bc2015-11-15 02:50:53 +010096 T(("wscanw(%p,\"%s\",...) called", (void *) win, fmt));
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053097
98 va_start(ap, fmt);
micky3879b9f5e72025-07-08 18:04:53 -040099 code = vw_scanw(win, fmt, ap);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530100 va_end(ap);
101 return (code);
102}
103
104NCURSES_EXPORT(int)
micky3879b9f5e72025-07-08 18:04:53 -0400105mvscanw(int y, int x, const char *fmt, ...)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530106{
107 int code;
108 va_list ap;
109
110 va_start(ap, fmt);
micky3879b9f5e72025-07-08 18:04:53 -0400111 code = (move(y, x) == OK) ? vw_scanw(stdscr, fmt, ap) : ERR;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530112 va_end(ap);
113 return (code);
114}
115
116NCURSES_EXPORT(int)
micky3879b9f5e72025-07-08 18:04:53 -0400117mvwscanw(WINDOW *win, int y, int x, const char *fmt, ...)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530118{
119 int code;
120 va_list ap;
121
122 va_start(ap, fmt);
micky3879b9f5e72025-07-08 18:04:53 -0400123 code = (wmove(win, y, x) == OK) ? vw_scanw(win, fmt, ap) : ERR;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530124 va_end(ap);
125 return (code);
126}