blob: 9d0922befd48b17f821a910350f7f3ea7547a447 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
typedef unsigned char bool;
#define strequ(a,b) (strcmp (a, b) == 0)
#define strnequ(a,b,c) (strncmp (a, b, c) == 0)
#ifndef __P
#ifdef __STDC__
#define __P(a) a
#else
#define __P(a) ()
#endif
#endif
#define UNSUCCESSFUL 1
#define SUCCESSFUL 0
#define TRUE 1
#define FALSE 0
#define NULLCHAR (unsigned char) 0
|