Rename io_file_exist{,s}()

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
Lukas Fleischer
2013-07-17 09:56:56 +02:00
parent 98fb747e6a
commit beac8bdd9b
4 changed files with 8 additions and 8 deletions

View File

@@ -872,7 +872,7 @@ int io_check_dir(const char *dir)
}
}
unsigned io_file_exist(const char *file)
unsigned io_file_exists(const char *file)
{
FILE *fd;
@@ -890,7 +890,7 @@ int io_check_file(const char *file)
return -1;
errno = 0;
if (io_file_exist(file)) {
if (io_file_exists(file)) {
return 1;
} else {
FILE *fd;