]> andersk Git - splint.git/blame - src/Headers/bool.h
Updated copyrights
[splint.git] / src / Headers / bool.h
CommitLineData
885824d3 1/*
c0de361f 2** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2003.
885824d3 3** See ../LICENSE for license information.
4**
5*/
6# if !defined(BOOL_H)
7
8# define BOOL_H
9
10# ifndef FALSE
11# define FALSE 0
12# endif
13
14# ifndef TRUE
15# define TRUE (! FALSE)
16# endif
17
18extern /*@observer@*/ cstring bool_unparse (bool p_b) /*@*/ ;
19extern /*@observer@*/ cstring bool_dump (bool p_b) /*@*/ ;
20extern /*@unused@*/ bool bool_not (bool p_b) /*@*/ ;
21extern bool bool_equal (bool p_b1, bool p_b2) /*@*/ ;
22extern int bool_compare (bool p_b1, bool p_b2) /*@*/ ;
23extern bool bool_fromInt (int p_i) /*@*/ ;
24extern int bool_toInt (bool p_b) /*@*/ ;
25
6483a926 26extern bool bool_isReasonable (/*@sef@*/ bool p_b) /*@*/ ;
27/*@-boolcompare@*/
28# define bool_isReasonable(b) (((b) == TRUE) || ((b) == FALSE))
29/*@=boolcompare@*/
30
885824d3 31# define bool_unparse(b) (cstring_makeLiteralTemp ((b) ? "true" : "false" ))
32# define bool_dump(b) (cstring_makeLiteralTemp ((b) ? "1" : "0" ))
33# define bool_not(b) ((b) ? FALSE : TRUE)
34# define bool_equal(a,b) ((a) ? (b) : !(b))
35# define bool_compare(a,b) ((a) ? ((b) ? 0 : 1) : ((b) ? -1 : 0))
36# define bool_fromInt(i) (((i) != 0) ? TRUE : FALSE)
37# define bool_toInt(b) ((b) ? 1 : 0)
38
39# else
40# error "Multiple include"
41# endif
42
43
44
45
This page took 0.209215 seconds and 5 git commands to generate.