JPRED-2 Add sources of all binaries (except alscript) to Git
[jpred.git] / sources / multicoil / scsystem.h
1 /*  Bonnie Berger, David Wilson and Theodore Tonchev 1992  */
2 /*      C Header File      */
3 /*  Types of Errors are defined here.  */
4
5 #ifndef __scsystem_h__
6 #define __scsystem_h__ 1
7
8 /* Error Definitions */
9 #define NO_ERR          0
10 #define USAGE_ERR       1
11 #define SWITCH_ERR      2
12 #define FOPEN_ERR       3
13 #define FWRITE_ERR      4
14 #define FREAD_ERR       5
15 #define MAGIC_ERR       6
16 #define MEMORY_ERR      7
17
18 /* Procedure Prototypes */
19
20 void error(int errcode, char* msg);
21
22 void usage();
23
24 void timestamp(FILE* flog);
25
26 #endif   /* __scsystem_h__ */
27
28 /*       End of Code       */