lib_in_wchnstr.c revision 166124
197049Speter/****************************************************************************
2166124Srafan * Copyright (c) 2002,2004 Free Software Foundation, Inc.                   *
397049Speter *                                                                          *
497049Speter * Permission is hereby granted, free of charge, to any person obtaining a  *
597049Speter * copy of this software and associated documentation files (the            *
697049Speter * "Software"), to deal in the Software without restriction, including      *
797049Speter * without limitation the rights to use, copy, modify, merge, publish,      *
897049Speter * distribute, distribute with modifications, sublicense, and/or sell       *
997049Speter * copies of the Software, and to permit persons to whom the Software is    *
1097049Speter * furnished to do so, subject to the following conditions:                 *
1197049Speter *                                                                          *
1297049Speter * The above copyright notice and this permission notice shall be included  *
1397049Speter * in all copies or substantial portions of the Software.                   *
1497049Speter *                                                                          *
1597049Speter * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
1697049Speter * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
1797049Speter * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
1897049Speter * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
1997049Speter * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
2097049Speter * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
2197049Speter * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
2297049Speter *                                                                          *
2397049Speter * Except as contained in this notice, the name(s) of the above copyright   *
2497049Speter * holders shall not be used in advertising or otherwise to promote the     *
2597049Speter * sale, use or other dealings in this Software without prior written       *
2697049Speter * authorization.                                                           *
2797049Speter ****************************************************************************/
2897049Speter
2997049Speter/****************************************************************************
30166124Srafan * Author: Thomas Dickey 2002,2004                                          *
3197049Speter ****************************************************************************/
3297049Speter
3397049Speter/*
3497049Speter**	lib_in_wchnstr.c
3597049Speter**
3697049Speter**	The routine win_wchnstr().
3797049Speter**
3897049Speter*/
3997049Speter
4097049Speter#include <curses.priv.h>
4197049Speter
42166124SrafanMODULE_ID("$Id: lib_in_wchnstr.c,v 1.3 2004/05/16 00:12:30 tom Exp $")
4397049Speter
4497049SpeterNCURSES_EXPORT(int)
45166124Srafanwin_wchnstr(WINDOW *win, cchar_t * wchstr, int n)
4697049Speter{
4797049Speter    int code = OK;
4897049Speter
49166124Srafan    TR(TRACE_CALLS, (T_CALLED("win_wchnstr(%p,%p,%d)"), win, wchstr, n));
5097049Speter    if (win != 0
5197049Speter	&& wchstr != 0) {
52166124Srafan	int row, col;
53166124Srafan	int j;
5497049Speter
55166124Srafan	getyx(win, row, col);
56166124Srafan
5797049Speter	if (n < 0) {
5897049Speter	    n = getmaxx(win) + 1 - getcurx(win);
5997049Speter	}
60166124Srafan	for (j = 0; j < n; ++j) {
61166124Srafan	    wchstr[j] = win->_line[row].text[col + j];
62166124Srafan	}
63166124Srafan	T(("result = %s", _nc_viscbuf(wchstr, n)));
6497049Speter    } else {
6597049Speter	code = ERR;
6697049Speter    }
6797049Speter    returnCode(code);
6897049Speter}
69