-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefs.h
More file actions
50 lines (40 loc) · 719 Bytes
/
defs.h
File metadata and controls
50 lines (40 loc) · 719 Bytes
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
/*
** ok-test defs.h
*/
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <malloc.h>
#include <signal.h>
#include <stdlib.h>
//#include <defines.h>
#include <math.h>
#include <errno.h>
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
#ifndef NULL
#define NULL 0
#endif
#define NONE_ASSIGNED -1
#define V_SMALL_BUFFER 256
#define SMALL_BUFFER 1024
#define BIG_BUFFER 10 * 1024
#define MAXSETS (16*1024)
#define MAX_FIELDS 32
#define MAX_INDEXES 32
#define MAX_TERM_LENGTH 256
#define WRITE 0
#define READ 1
#define APPEND 2
#define LEGAL_GSL "HFISGPN"
#define STOP_TERMS "FH"
/*
* Portotype of libi0
*/
void iinit(void) ;
int i0(char *, char *) ;
void iexit(void) ;