1 /* Boxes - Header
2 
3  * Copyright (C) 1998 J.A. Bezemer
4  *
5  * Licensed under the terms of the GNU General Public License.
6  * ABSOLUTELY NO WARRANTY.
7  * See the file `COPYING' in this directory.
8  */
9 
10 #ifndef HAVE_BOXES_H
11 #define HAVE_BOXES_H
12 
13 
14 extern void mybox (int y, int x, int h, int w);
15 /* Draws a box, top left = (y,x), heigth = h, width = w. */
16 
17 
18 #endif /* HAVE_BOXES_H */
19