1 /*
2  * madir.h
3  *
4  * madir direction
5  *
6  * Copyright (c) 1988-1993 Miguel Santana
7  * Copyright (c) 1995-1999 Akim Demaille, Miguel Santana
8  * $Id: madir.h,v 1.2 1998/08/06 16:53:49 demaille Exp $
9  */
10 
11 /*
12  * This file is part of a2ps.
13  *
14  * This program is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation; either version 2, or (at your option)
17  * any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program; see the file COPYING.  If not, write to
26  * the Free Software Foundation, 59 Temple Place - Suite 330,
27  * Boston, MA 02111-1307, USA.
28  */
29 
30 #ifndef MADIR_H_
31 # define MADIR_H_ 1
32 
33 /* Should the virtual page go first to the left, or the bottom? */
34 typedef enum madir_e
35 {
36   madir_rows, madir_columns
37 } madir_t;
38 
39 madir_t madir_argmatch PARAMS ((const char * option, const char * arg));
40 const char * madir_to_string PARAMS ((madir_t madir));
41 #endif /* !defined (MADIR_H_) */
42