1 /* ouline.h: header for layout/dimentioning and drawing routines for over
2    and underlines. */
3 
4 /*  This file is part of asciiTeX.
5 
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License.
9 
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14 
15     You should have received a copy of the GNU General Public License
16     along with this program; see the file COPYING.  If not, write to
17       The Free Software Foundation, Inc.
18       59 Temple Place, Suite 330
19       Boston, MA 02111 USA
20 
21 
22     Authors:
23     Original program (eqascii): Przemek Borys
24     Fork by: Bart Pieters
25 
26 *************************************************************************/
27 
28 #ifndef OULINEL_H
29 #define OULINE_H
30 
31 int             dimOverl(char *found, char **Gpos, Tdim * Our,
32 			 struct Tgraph *graph);
33 void            drawOverl(int *Kid, int *Curx, int *Cury, char ***screen,
34 			  struct Tgraph *graph);
35 
36 int             dimUnderl(char *found, char **Gpos, Tdim * Our,
37 			  struct Tgraph *graph);
38 void            drawUnderl(int *Kid, int *Curx, int *Cury, char ***screen,
39 			   struct Tgraph *graph);
40 
41 #endif
42