summaryrefslogtreecommitdiff
path: root/src/curses/addnwstr.c
blob: 25e53a3b5c45d10042409f754654ad9046004478 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <curses.h>
#include "_curses.h"

int waddnwstr(WINDOW * win, const wchar_t * wstr, int n)
{
	(void)win; (void)wstr; (void)n;
	return 0;
}

CURSES_FUNCTION2(int, addnwstr, const wchar_t *, int)

/*
XOPEN(400)
LINK(curses)
*/