aboutsummaryrefslogtreecommitdiff
path: root/lib/libncurses/lib_insstr.c
blob: 63076626d26a4c19b672c783d02ea07c4fbc51b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

/* This work is copyrighted. See COPYRIGHT.OLD & COPYRIGHT.NEW for   *
*  details. If they are missing then this copy is in violation of    *
*  the copyright conditions.                                        */

/*
**	lib_insstr.c
**
**	The routine winsnstr().
**
*/

#include "curses.priv.h"

int winsnstr(WINDOW *win, char *str, int n)
{

	T(("winsstr(%x,'%x',%d) called", win, str, n));

	return OK;
}