diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2013-07-17 09:56:56 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2013-07-17 14:03:54 +0200 |
commit | beac8bdd9be41c0bc17d85429ca74b4f6aa99a3e (patch) | |
tree | bb699ab539d197fe83c06bd908776dcbe6a8619a /src/io.c | |
parent | 98fb747e6ae7ccded2e8aa46154df5d834a72e1a (diff) | |
download | calcurse-beac8bdd9be41c0bc17d85429ca74b4f6aa99a3e.zip |
Rename io_file_exist{,s}()
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/io.c')
-rw-r--r-- | src/io.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |