Next version of JABA
[jabaws.git] / binaries / src / clustalw / src / general / general.h
1 /**
2  * Author: Mark Larkin
3  * 
4  * Copyright (c) 2007 Des Higgins, Julie Thompson and Toby Gibson.  
5  */
6 /* Mark tidy up Nov 2005 */
7 /* General purpose header file - rf 12/90 */
8
9 #ifndef _H_general
10     #define _H_general
11
12 namespace clustalw
13 {
14
15     /* Macintosh specific rf 12/9/94 */
16     #ifdef OS_MAC
17
18         //#define const           /* THINK C doesn't know about these identifiers */
19         //#define signed
20         //#define volatile
21         //#define int long
22         //#define pint short            /* cast ints in printf statements as pint*/
23         //#define int int            /* cast ints for sequence lengths */
24         //#define lint int            /* cast ints for profile scores */
25
26     #else
27
28         //#define pint int            /* cast ints in printf statements as pint */
29         //#define int int            /* cast ints for sequence lengths */
30         //#define lint int             /* cast ints for profile scores */
31
32     #endif
33
34     /* definitions for all machines */
35
36     #define EOS '\0'                /* End-Of-String */
37     #define MAXLINE 5000            /* Max. line length */
38
39 }
40 #endif /* ifndef _H_general */
41
42