exist_file() is inline now.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
Этот коммит содержится в:
родитель
d543be11d9
Коммит
d154b0f676
@ -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 */
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user