]> andersk Git - splint.git/blob - test/metastate/osd.c
53b57ca2e6c85365ca6fcd74cb95fc2f5623e16a
[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.023558 seconds and 3 git commands to generate.