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