blob: 2f7686ffc50dd5b5c16f7ebf878c1f6bcf34e8b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <curses.h>
#include "_curses.h"
int wecho_wchar(WINDOW * win, const cchar_t * wch)
{
return ERR;
}
CURSES_WFN1(int, echo_wchar, const cchar_t * wch)
/*
XOPEN(400)
LINK(curses)
*/
|