1 /* sscript.h: header for layout/dimentioning and drawing routines for super
2    and sub scripts. */
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 SSCRIPT_H
29 #define SSCRIPT_H
30 
31 int             dimSubscript(char *found, char **Gpos, Tdim * Our,
32 			     struct Tgraph *graph);
33 void            drawSubscript(int *Kid, int *Curx, int *Cury,
34 			      char ***screen, struct Tgraph *graph,
35 			      char *txt);
36 
37 int             dimSuperscript(char *found, char **Gpos, Tdim * Our,
38 			       struct Tgraph *graph);
39 void            drawSuperscript(int *Kid, int *Curx, int *Cury,
40 				char ***screen, struct Tgraph *graph,
41 				char *txt);
42 
43 #endif
44