blob: 2492ab12199f7434cdf641eff098174bf625ece4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <curses.h>
#include "_curses.h"
int whline_set(WINDOW * win, const cchar_t * wch, int n)
{
return 0;
}
CURSES_FUNCTION2(int, hline_set, const cchar_t *, int)
/*
XOPEN(400)
LINK(curses)
*/
|