]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libncurses/lib_insstr.c
wscrl: implement partial scrolling via al/dl
[FreeBSD/FreeBSD.git] / lib / libncurses / lib_insstr.c
1
2 /* This work is copyrighted. See COPYRIGHT.OLD & COPYRIGHT.NEW for   *
3 *  details. If they are missing then this copy is in violation of    *
4 *  the copyright conditions.                                        */
5
6 /*
7 **      lib_insstr.c
8 **
9 **      The routine winsnstr().
10 **
11 */
12
13 #include "curses.priv.h"
14
15 int winsnstr(WINDOW *win, char *str, int n)
16 {
17
18         T(("winsstr(%x,'%x',%d) called", win, str, n));
19
20         return OK;
21 }