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