-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathctree.h
41 lines (30 loc) · 817 Bytes
/
ctree.h
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
/* ###############################################################
##
## C Tree Builder
##
## File: ctree.h
##
## Programmer: Shawn Flisakowski
## Date: Dec 16, 1994
##
##
############################################################### */
#ifndef CTREE_H
#define CTREE_H
#ifndef _HPUX_SOURCE
#define _HPUX_SOURCE
#endif
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include <errno.h>
#include "config.h"
#include "utype.h"
/* ############################################################### */
BEGIN_HEADER
#define ON (1)
#define OFF (0)
END_HEADER
/* ############################################################### */
#endif /* CTREE_H */