Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <unistd.h>
  3. #include <errno.h>
  4. #include <io.h>
  5. #include <stdio.h>
  6.  
  7. int __file_exists(const char *fn)
  8. {
  9.  FILE * f;
  10.  f=fopen(fn,"r");
  11.  if(!f) return 0;
  12.  fclose(f);
  13.   return 1;
  14. }
  15.