blob: 89f70dda70d2b66ec8b8fd80981cc5a229637f01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* strtypes.h some typedefs for strings and TRUE/FALSE */
#ifndef STRTYPES_H
#define STRTYPES_H
typedef char *STRING; /* a pointer-to-a-char */
typedef STRING *PTRADR; /* A pointer-to-a-pointer-to-a-char */
#define SNUL '\0'
#endif
#ifndef TRUE
# define TRUE 1
#endif
#ifndef FALSE
# define FALSE 0
#endif
|