1
1
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
Этот коммит содержится в:
Andrew Borodin 2010-11-11 10:42:59 +03:00
родитель d543be11d9
Коммит d154b0f676
2 изменённых файлов: 6 добавлений и 10 удалений

Просмотреть файл

@ -659,14 +659,6 @@ extension (const char *filename)
/* --------------------------------------------------------------------------------------------- */ /* --------------------------------------------------------------------------------------------- */
int
exist_file (const char *name)
{
return access (name, R_OK) == 0;
}
/* --------------------------------------------------------------------------------------------- */
int int
check_for_default (const char *default_file, const char *file) check_for_default (const char *default_file, const char *file)
{ {

Просмотреть файл

@ -156,8 +156,6 @@ void init_uid_gid_cache (void);
char *get_group (int); char *get_group (int);
char *get_owner (int); char *get_owner (int);
int exist_file (const char *name);
/* Check if the file exists. If not copy the default */ /* Check if the file exists. If not copy the default */
int check_for_default (const char *default_file, const char *file); int check_for_default (const char *default_file, const char *file);
@ -224,4 +222,10 @@ char *guess_message_value (void);
/*** inline functions **************************************************/ /*** inline functions **************************************************/
static inline gboolean
exist_file (const char *name)
{
return (access (name, R_OK) == 0);
}
#endif /* MC_UTIL_H */ #endif /* MC_UTIL_H */