blob: 968badea1ece658ff32a64ee11ee2ff28022ea10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef FS_UTILS_H_
#define FS_UTILS_H_
void tmp_local_filename(const char *prefix, char *buf);
void tmp_ts_prefix(char *buf);
void ts_filename(const char *prefix, int num, char *buf);
void upload_file(const char *local, const char *remote);
void remove_remote(const char *remote);
#endif
|