summaryrefslogtreecommitdiff
path: root/src/curses/box_set.c
blob: 437cebda96fe9efa405e75287045634a13a6b55f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <curses.h>
#include "stddef.h"

int box_set(WINDOW * win, const cchar_t * verch, const cchar_t * horch)
{
	return wborder(win, verch, verch, horch, horch, NULL, NULL, NULL, NULL);
}

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