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

int waddchnstr(WINDOW * win, const chtype * chstr, int n)
{
	(void)win; (void)chstr; (void)n;
	return 0;
}

CURSES_FUNCTION2(int, addchnstr, const chtype *, int)

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