File: boxes.c

package info (click to toggle)
gramofile 1.6-11
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 1,436 kB
  • ctags: 1,125
  • sloc: ansic: 11,252; makefile: 60
file content (35 lines) | stat: -rw-r--r-- 751 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* Boxes

 * Copyright (C) 1998 J.A. Bezemer
 *
 * Licensed under the terms of the GNU General Public License.
 * ABSOLUTELY NO WARRANTY.
 * See the file `COPYING' in this directory.
 */

#include "boxes.h"
#ifndef OLD_CURSES
#include <ncurses.h>
#else
#include <curses.h>
#endif


void
mybox (int y, int x, int h, int w)
/* Draws a box, top left = (y,x), heigth = h, width = w. */
{
  mvaddch (y, x, ACS_ULCORNER);
  mvaddch (y, x + w - 1, ACS_URCORNER);
  mvaddch (y + h - 1, x, ACS_LLCORNER);
  mvaddch (y + h - 1, x + w - 1, ACS_LRCORNER);

  move (y, x + 1);
  hline (ACS_HLINE, w - 2);
  move (y + 1, x + w - 1);
  vline (ACS_VLINE, h - 2);
  move (y + h - 1, x + 1);
  hline (ACS_HLINE, w - 2);
  move (y + 1, x);
  vline (ACS_VLINE, h - 2);
}