blob: 4bcbada648f18769d9fd5f60ec8edae59ca1c414 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "_curses.h"
#include <curses.h>
int winsnstr(WINDOW * win, const char * str, int n)
{
return ERR;
}
CURSES_FUNCTION2(int, insnstr, const char *, int)
/*
XOPEN(400)
LINK(curses)
*/
|