File: general.h

package info (click to toggle)
clustalx 1.83-4
  • links: PTS, VCS
  • area: non-free
  • in suites: lenny, squeeze
  • size: 1,768 kB
  • ctags: 1,478
  • sloc: ansic: 21,694; makefile: 85
file content (50 lines) | stat: -rw-r--r-- 1,075 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* General purpose header file - rf 12/90 */

#ifndef _H_general
#define _H_general



/* Macintosh specific */
#ifdef MAC					/* rf 12/9/94 */

#define const					/* THINK C doesn't know about these identifiers */
#define signed
#define volatile
#define int long
#ifndef Boolean
#define Boolean char
#endif
#define pint short			/* cast ints in printf statements as pint */
#define sint int			/* cast ints for sequence lengths */
#define lint int			/* cast ints for profile scores */

#else 							/* not Macintoshs */

#define pint int			/* cast ints in printf statements as pint */
#define sint int			/* cast ints for sequence lengths */
#define lint int 			/* cast ints for profile scores */
#ifndef Boolean
#define Boolean char
#endif

#endif 							/* ifdef MAC */

/* definitions for all machines */

#undef TRUE						/* Boolean values; first undef them, just in case */
#undef FALSE
#define TRUE 1
#define FALSE 0

#define EOS '\0'				/* End-Of-String */
#define MAXLINE 512			/* Max. line length */


#ifdef VMS
#define signed
#endif


#endif /* ifndef _H_general */