]> andersk Git - splint.git/blame_incremental - test/metastate/osd.c
Added support for ISO C99 _Bool and stdbool bool/true/false. The
[splint.git] / test / metastate / osd.c
... / ...
CommitLineData
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);
10 return true;
11 }
12 else
13 {
14 return false;
15 }
16}
This page took 0.031245 seconds and 5 git commands to generate.