summaryrefslogtreecommitdiff
path: root/usr/src/ucblib/libcurses/scanw.c
blob: 9cd61cf03c97f80893ef7517229b11255c1f60af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
 * Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
 * Use is subject to license terms.
 */

/*	Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T	*/
/*	  All Rights Reserved  	*/

/*
 * Copyright (c) 1980 Regents of the University of California.
 * All rights reserved.  The Berkeley software License Agreement
 * specifies the terms and conditions for redistribution.
 */

#pragma ident	"%Z%%M%	%I%	%E% SMI"

/*LINTLIBRARY*/

#ifndef lint
static char
sccsid[] = "@(#)scanw.c 1.8 88/02/08 SMI"; /* from UCB 5.1 85/06/07 */
#endif	/* not lint */

#include	<stdarg.h>
#include	<string.h>

/*
 * scanw and friends
 */

#include	"curses.ext"

/*
 *	This routine implements a scanf on the standard screen.
 */

int
scanw(char *fmt, ...)
{	int j;
	va_list ap;

	va_start(ap, fmt);
	j = _sscans(stdscr, fmt, ap);
	va_end(ap);
	return (j);
}

/*
 *	This routine implements a scanf on the given window.
 */

int
wscanw(WINDOW *win, char *fmt, ...)
{
	va_list ap;
	int j;

	va_start(ap, fmt);
	j = _sscans(win, fmt, ap);
	va_end(ap);
	return (j);
}
/*
 *	This routine actually executes the scanf from the window.
 *
 *	This is really a modified version of "sscanf".  As such,
 * it assumes that sscanf interfaces with the other scanf functions
 * in a certain way.  If this is not how your system works, you
 * will have to modify this routine to use the interface that your
 * "sscanf" uses.
 */

int
_sscans(WINDOW *win, char *fmt, va_list	ap)
{
	char	buf[100];
	FILE	junk;

	junk._flag = _IOREAD|_IOWRT;
	junk._base = junk._ptr = (unsigned char *)buf;
	if (wgetstr(win, buf) == ERR)
		return (ERR);
	junk._cnt = (ssize_t)strlen(buf);
	return (_doscan(&junk, fmt, ap));
}