]> andersk Git - splint.git/blame_incremental - test/bool.h
Added support for ISO C99 _Bool and stdbool bool/true/false. The
[splint.git] / test / bool.h
... / ...
CommitLineData
1#ifndef BOOL_H
2#define BOOL_H
3
4/*@-cppnames@*/
5/*@-exporttype@*/
6typedef /*@abstract@*/ int bool;
7/*@=exporttype@*/
8/*@=cppnames@*/
9
10#ifndef FALSE
11/*@constant unused bool FALSE@*/
12#define FALSE false
13#endif
14
15#ifndef TRUE
16/*@constant unused bool TRUE@*/
17#define TRUE true
18#endif
19
20/*@-slovakfcns@*/
21extern /*@unused@*/ void bool_initMod (void);
22# define bool_initMod()
23
24extern /*@unused@*/ /*@observer@*/ char *bool_unparse (bool);
25# define bool_unparse(b) ((b) ? "true" : "false" )
26
27extern /*@unused@*/ bool bool_not (bool);
28# define bool_not(b) ((b) ? FALSE : TRUE)
29
30extern /*@unused@*/ bool bool_equal (bool, bool);
31# define bool_equal(a,b) ((a) ? (b) : !(b))
32/*@=slovakfcns@*/
33
34# endif
This page took 0.137467 seconds and 5 git commands to generate.