]> andersk Git - splint.git/blame - test/metastate/osd.c
Added support for ISO C99 _Bool and stdbool bool/true/false. The
[splint.git] / test / metastate / osd.c
CommitLineData
80ee600a 1void check (int b);
2
3int osd_fileIsReadable (char *f)
4{
5 FILE *fl = fopen (f, "r");
6
7 if (fl != NULL)
8 {
9 fclose (fl);
0bd4c301 10 return true;
80ee600a 11 }
12 else
13 {
0bd4c301 14 return false;
80ee600a 15 }
16}
This page took 0.06741 seconds and 5 git commands to generate.