1*7c478bd9Sstevel@tonic-gate /* 2*7c478bd9Sstevel@tonic-gate * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 3*7c478bd9Sstevel@tonic-gate * Use is subject to license terms. 4*7c478bd9Sstevel@tonic-gate */ 5*7c478bd9Sstevel@tonic-gate 6*7c478bd9Sstevel@tonic-gate /* Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T */ 7*7c478bd9Sstevel@tonic-gate /* All Rights Reserved */ 8*7c478bd9Sstevel@tonic-gate 9*7c478bd9Sstevel@tonic-gate /* 10*7c478bd9Sstevel@tonic-gate * Copyright (c) 1980 Regents of the University of California. 11*7c478bd9Sstevel@tonic-gate * All rights reserved. The Berkeley software License Agreement 12*7c478bd9Sstevel@tonic-gate * specifies the terms and conditions for redistribution. 13*7c478bd9Sstevel@tonic-gate */ 14*7c478bd9Sstevel@tonic-gate 15*7c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 16*7c478bd9Sstevel@tonic-gate 17*7c478bd9Sstevel@tonic-gate /*LINTLIBRARY*/ 18*7c478bd9Sstevel@tonic-gate 19*7c478bd9Sstevel@tonic-gate #ifndef lint 20*7c478bd9Sstevel@tonic-gate static char 21*7c478bd9Sstevel@tonic-gate sccsid[] = "@(#)scanw.c 1.8 88/02/08 SMI"; /* from UCB 5.1 85/06/07 */ 22*7c478bd9Sstevel@tonic-gate #endif /* not lint */ 23*7c478bd9Sstevel@tonic-gate 24*7c478bd9Sstevel@tonic-gate #include <stdarg.h> 25*7c478bd9Sstevel@tonic-gate #include <string.h> 26*7c478bd9Sstevel@tonic-gate 27*7c478bd9Sstevel@tonic-gate /* 28*7c478bd9Sstevel@tonic-gate * scanw and friends 29*7c478bd9Sstevel@tonic-gate */ 30*7c478bd9Sstevel@tonic-gate 31*7c478bd9Sstevel@tonic-gate #include "curses.ext" 32*7c478bd9Sstevel@tonic-gate 33*7c478bd9Sstevel@tonic-gate /* 34*7c478bd9Sstevel@tonic-gate * This routine implements a scanf on the standard screen. 35*7c478bd9Sstevel@tonic-gate */ 36*7c478bd9Sstevel@tonic-gate 37*7c478bd9Sstevel@tonic-gate int 38*7c478bd9Sstevel@tonic-gate scanw(char *fmt, ...) 39*7c478bd9Sstevel@tonic-gate { int j; 40*7c478bd9Sstevel@tonic-gate va_list ap; 41*7c478bd9Sstevel@tonic-gate 42*7c478bd9Sstevel@tonic-gate va_start(ap, fmt); 43*7c478bd9Sstevel@tonic-gate j = _sscans(stdscr, fmt, ap); 44*7c478bd9Sstevel@tonic-gate va_end(ap); 45*7c478bd9Sstevel@tonic-gate return (j); 46*7c478bd9Sstevel@tonic-gate } 47*7c478bd9Sstevel@tonic-gate 48*7c478bd9Sstevel@tonic-gate /* 49*7c478bd9Sstevel@tonic-gate * This routine implements a scanf on the given window. 50*7c478bd9Sstevel@tonic-gate */ 51*7c478bd9Sstevel@tonic-gate 52*7c478bd9Sstevel@tonic-gate int 53*7c478bd9Sstevel@tonic-gate wscanw(WINDOW *win, char *fmt, ...) 54*7c478bd9Sstevel@tonic-gate { 55*7c478bd9Sstevel@tonic-gate va_list ap; 56*7c478bd9Sstevel@tonic-gate int j; 57*7c478bd9Sstevel@tonic-gate 58*7c478bd9Sstevel@tonic-gate va_start(ap, fmt); 59*7c478bd9Sstevel@tonic-gate j = _sscans(win, fmt, ap); 60*7c478bd9Sstevel@tonic-gate va_end(ap); 61*7c478bd9Sstevel@tonic-gate return (j); 62*7c478bd9Sstevel@tonic-gate } 63*7c478bd9Sstevel@tonic-gate /* 64*7c478bd9Sstevel@tonic-gate * This routine actually executes the scanf from the window. 65*7c478bd9Sstevel@tonic-gate * 66*7c478bd9Sstevel@tonic-gate * This is really a modified version of "sscanf". As such, 67*7c478bd9Sstevel@tonic-gate * it assumes that sscanf interfaces with the other scanf functions 68*7c478bd9Sstevel@tonic-gate * in a certain way. If this is not how your system works, you 69*7c478bd9Sstevel@tonic-gate * will have to modify this routine to use the interface that your 70*7c478bd9Sstevel@tonic-gate * "sscanf" uses. 71*7c478bd9Sstevel@tonic-gate */ 72*7c478bd9Sstevel@tonic-gate 73*7c478bd9Sstevel@tonic-gate int 74*7c478bd9Sstevel@tonic-gate _sscans(WINDOW *win, char *fmt, va_list ap) 75*7c478bd9Sstevel@tonic-gate { 76*7c478bd9Sstevel@tonic-gate char buf[100]; 77*7c478bd9Sstevel@tonic-gate FILE junk; 78*7c478bd9Sstevel@tonic-gate 79*7c478bd9Sstevel@tonic-gate junk._flag = _IOREAD|_IOWRT; 80*7c478bd9Sstevel@tonic-gate junk._base = junk._ptr = (unsigned char *)buf; 81*7c478bd9Sstevel@tonic-gate if (wgetstr(win, buf) == ERR) 82*7c478bd9Sstevel@tonic-gate return (ERR); 83*7c478bd9Sstevel@tonic-gate junk._cnt = (ssize_t)strlen(buf); 84*7c478bd9Sstevel@tonic-gate return (_doscan(&junk, fmt, ap)); 85*7c478bd9Sstevel@tonic-gate } 86