perl 4.0 patch 14: patch #11, continued
[p5sagit/p5-mst-13.2.git] / x2p / handy.h
CommitLineData
6e21c824 1/* $RCSfile: handy.h,v $$Revision: 4.0.1.2 $$Date: 91/06/07 12:15:43 $
a687059c 2 *
6e21c824 3 * Copyright (c) 1991, Larry Wall
a687059c 4 *
6e21c824 5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
8d063cd8 7 *
8 * $Log: handy.h,v $
6e21c824 9 * Revision 4.0.1.2 91/06/07 12:15:43 lwall
10 * patch4: new copyright notice
11 *
1c3d792e 12 * Revision 4.0.1.1 91/04/12 09:29:08 lwall
13 * patch1: random cleanup in cpp namespace
14 *
fe14fcc3 15 * Revision 4.0 91/03/20 01:57:45 lwall
16 * 4.0 baseline.
8d063cd8 17 *
18 */
19
20#define Null(type) ((type)0)
21#define Nullch Null(char*)
22#define Nullfp Null(FILE*)
23
24#define bool char
1c3d792e 25#ifdef TRUE
26#undef TRUE
27#endif
28#ifdef FALSE
29#undef FALSE
30#endif
8d063cd8 31#define TRUE (1)
32#define FALSE (0)
33
34#define Ctl(ch) (ch & 037)
35
36#define strNE(s1,s2) (strcmp(s1,s2))
37#define strEQ(s1,s2) (!strcmp(s1,s2))
38#define strLT(s1,s2) (strcmp(s1,s2) < 0)
39#define strLE(s1,s2) (strcmp(s1,s2) <= 0)
40#define strGT(s1,s2) (strcmp(s1,s2) > 0)
41#define strGE(s1,s2) (strcmp(s1,s2) >= 0)
42#define strnNE(s1,s2,l) (strncmp(s1,s2,l))
43#define strnEQ(s1,s2,l) (!strncmp(s1,s2,l))