NetBSD/lib/libcurses/printw.c

208 lines
4.4 KiB
C
Raw Normal View History

1998-02-03 22:12:13 +03:00
/* $NetBSD: printw.c,v 1.10 1998/02/03 19:12:32 perry Exp $ */
1997-07-22 11:36:20 +04:00
1993-03-21 12:45:37 +03:00
/*
1994-08-18 01:51:41 +04:00
* Copyright (c) 1981, 1993, 1994
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
1997-07-22 11:36:20 +04:00
#include <sys/cdefs.h>
1993-03-21 12:45:37 +03:00
#ifndef lint
1997-07-22 11:36:20 +04:00
#if 0
1994-08-18 01:51:41 +04:00
static char sccsid[] = "@(#)printw.c 8.3 (Berkeley) 5/4/94";
1997-07-22 11:36:20 +04:00
#else
1998-02-03 22:12:13 +03:00
__RCSID("$NetBSD: printw.c,v 1.10 1998/02/03 19:12:32 perry Exp $");
1997-07-22 11:36:20 +04:00
#endif
1993-08-07 09:48:37 +04:00
#endif /* not lint */
1994-01-24 11:36:38 +03:00
#ifdef __STDC__
1993-08-07 09:48:37 +04:00
#include <stdarg.h>
#else
#include <varargs.h>
#endif
1993-03-21 12:45:37 +03:00
1994-08-18 01:51:41 +04:00
#include "curses.h"
1993-03-21 12:45:37 +03:00
/*
* printw and friends.
*
* These routines make nonportable assumptions about varargs if __STDC__
* is not in effect.
*/
1993-08-07 09:48:37 +04:00
static int __winwrite __P((void *, const char *, int));
1993-03-21 12:45:37 +03:00
/*
1993-08-07 09:48:37 +04:00
* printw --
* Printf on the standard screen.
1993-03-21 12:45:37 +03:00
*/
1993-08-07 09:48:37 +04:00
int
1994-01-24 11:36:38 +03:00
#ifdef __STDC__
1993-03-21 12:45:37 +03:00
printw(const char *fmt, ...)
#else
printw(fmt, va_alist)
char *fmt;
va_dcl
#endif
{
1993-08-07 09:48:37 +04:00
va_list ap;
int ret;
1993-03-21 12:45:37 +03:00
1994-01-24 11:36:38 +03:00
#ifdef __STDC__
1993-03-21 12:45:37 +03:00
va_start(ap, fmt);
#else
va_start(ap);
#endif
ret = vwprintw(stdscr, fmt, ap);
1993-03-21 12:45:37 +03:00
va_end(ap);
return (ret);
}
/*
1993-08-07 09:48:37 +04:00
* wprintw --
* Printf on the given window.
1993-03-21 12:45:37 +03:00
*/
1993-08-07 09:48:37 +04:00
int
1994-01-24 11:36:38 +03:00
#ifdef __STDC__
1993-08-07 09:48:37 +04:00
wprintw(WINDOW * win, const char *fmt, ...)
1993-03-21 12:45:37 +03:00
#else
wprintw(win, fmt, va_alist)
WINDOW *win;
char *fmt;
va_dcl
#endif
{
1993-08-07 09:48:37 +04:00
va_list ap;
int ret;
1993-03-21 12:45:37 +03:00
#ifdef __STDC__
va_start(ap, fmt);
#else
va_start(ap);
#endif
ret = vwprintw(win, fmt, ap);
1993-08-07 09:48:37 +04:00
va_end(ap);
return (ret);
}
/*
* mvprintw, mvwprintw --
* Implement the mvprintw commands. Due to the variable number of
* arguments, they cannot be macros. Sigh....
*/
int
1994-01-24 11:36:38 +03:00
#ifdef __STDC__
1998-02-03 22:12:13 +03:00
mvprintw(int y, int x, const char *fmt, ...)
1993-08-07 09:48:37 +04:00
#else
mvprintw(y, x, fmt, va_alist)
1998-02-03 22:12:13 +03:00
int y, x;
1993-08-07 09:48:37 +04:00
char *fmt;
va_dcl
#endif
{
va_list ap;
int ret;
1994-01-24 11:36:38 +03:00
#ifdef __STDC__
1993-08-07 09:48:37 +04:00
va_start(ap, fmt);
#else
va_start(ap);
#endif
if (move(y, x) != OK)
return (ERR);
ret = vwprintw(stdscr, fmt, ap);
1993-08-07 09:48:37 +04:00
va_end(ap);
return (ret);
}
int
1994-01-24 11:36:38 +03:00
#ifdef __STDC__
1998-02-03 22:12:13 +03:00
mvwprintw(WINDOW * win, int y, int x,
1993-08-07 09:48:37 +04:00
const char *fmt, ...)
#else
mvwprintw(win, y, x, fmt, va_alist)
1998-02-03 22:12:13 +03:00
WINDOW *win;
int y, x;
1993-08-07 09:48:37 +04:00
char *fmt;
va_dcl
#endif
{
va_list ap;
int ret;
1994-01-24 11:36:38 +03:00
#ifdef __STDC__
1993-08-07 09:48:37 +04:00
va_start(ap, fmt);
#else
va_start(ap);
#endif
if (wmove(win, y, x) != OK)
return (ERR);
ret = vwprintw(win, fmt, ap);
1993-03-21 12:45:37 +03:00
va_end(ap);
return (ret);
}
/*
1993-08-07 09:48:37 +04:00
* Internal write-buffer-to-window function.
1993-03-21 12:45:37 +03:00
*/
static int
1993-08-07 09:48:37 +04:00
__winwrite(cookie, buf, n)
1993-03-21 12:45:37 +03:00
void *cookie;
1998-02-03 22:12:13 +03:00
const char *buf;
1993-03-21 12:45:37 +03:00
int n;
{
1998-02-03 22:12:13 +03:00
WINDOW *win;
int c;
1993-03-21 12:45:37 +03:00
1993-08-07 09:48:37 +04:00
for (c = n, win = cookie; --c >= 0;)
if (waddch(win, *buf++) == ERR)
1993-03-21 12:45:37 +03:00
return (-1);
1993-08-07 09:48:37 +04:00
return (n);
1993-03-21 12:45:37 +03:00
}
/*
* vwprintw --
1993-03-21 12:45:37 +03:00
* This routine actually executes the printf and adds it to the window.
*/
int
vwprintw(win, fmt, ap)
1993-03-21 12:45:37 +03:00
WINDOW *win;
const char *fmt;
1993-08-07 09:48:37 +04:00
va_list ap;
1993-03-21 12:45:37 +03:00
{
FILE *f;
1993-08-07 09:48:37 +04:00
if ((f = funopen(win, NULL, __winwrite, NULL, NULL)) == NULL)
return (ERR);
(void)vfprintf(f, fmt, ap);
return (fclose(f) ? ERR : OK);
1993-03-21 12:45:37 +03:00
}