blob: 18915f3375b685144af170d7f518c503e7518037 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <curses.h>
#include "_curses.h"
int waddwstr(WINDOW * win, const wchar_t * wstr)
{
return waddwnstr(win, wstr, -1);
}
CURSES_FUNCTION(int, addwstr, const wchar_t *)
/*
XOPEN(400)
LINK(curses)
*/
|