From a447159e31492aa16ba5740649a507f42097644f Mon Sep 17 00:00:00 2001 From: Bruce Allen Date: Wed, 19 Jan 2005 17:53:27 +0000 Subject: [PATCH] Added is_dir() prototype -- generally useful function. svn path=/trunk/boinc/; revision=5143 --- lib/filesys.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/filesys.h b/lib/filesys.h index 0200610132..a0408914cc 100755 --- a/lib/filesys.h +++ b/lib/filesys.h @@ -75,6 +75,7 @@ extern "C" { extern void relative_to_absolute(char* relname, char* path); extern int boinc_make_dirs(char*, char*); extern char boinc_failed_file[256]; + int is_dir(const char* path); /* we suitably defined 'bool' as 'int' in ANSI-C */ extern bool boinc_file_exists(const char* path);