blob: 0955b110951f7200066f03ac081220fe6e18c904 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <curses.h>
#include "_curses.h"
int waddchstr(WINDOW * win, const chtype * chstr)
{
return waddchnstr(win, chstr, -1);
}
CURSES_FUNCTION(int, addchstr, const chtype *)
/*
XOPEN(4)
LINK(curses)
*/
|