]> andersk Git - splint.git/blob - test/manual/bool.c
noexpand always false.
[splint.git] / test / manual / bool.c
1 # include "bool.h"
2
3 int f (int i, char *s, 
4        bool b1, bool b2)
5 {
6   if (i = 3) 
7     return b1;
8   if (!i || s) 
9     return i;
10   if (s) 
11     return 7;
12   if (b1 == b2) 
13     return 3;
14   return 2;
15 }
16       
This page took 0.049612 seconds and 5 git commands to generate.