1 
2 /*
3 
4 PHYML :  a program that  computes maximum likelihood  phylogenies from
5 DNA or AA homologous sequences
6 
7 Copyright (C) Stephane Guindon. Oct 2003 onward
8 
9 All parts of  the source except where indicated  are distributed under
10 the GNU public licence.  See http://www.opensource.org for details.
11 
12 */
13 
14 #include <config.h>
15 
16 #ifndef CL_H
17 #define CL_H
18 
19 #include <unistd.h>
20 #include <getopt.h>
21 #include "utilities.h"
22 #include "help.h"
23 #include "models.h"
24 #include "free.h"
25 #include "interface.h"
26 #include "invitee.h"
27 #include "date.h"
28 
29 
30 int Read_Command_Line(option *input, int argc, char **argv);
31 
32 #endif
33