blob: 28f8b595718557ee1db5fc1343b9607f45ffbd29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef COPYFILE_H
#define COPYFILE_H
#include <stdbool.h>
#include "common.h"
__FICS_BEGIN_DECLS
bool fics_copyfile(const char *, const char *, const bool);
bool is_regular_file(const char *);
__FICS_END_DECLS
#endif
|