]> andersk Git - splint.git/blob - test/metastate/osd.c
Added support for ISO C99 _Bool and stdbool bool/true/false. The
[splint.git] / test / metastate / osd.c
1 void check (int b);
2
3 int 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.039779 seconds and 5 git commands to generate.