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