-
Notifications
You must be signed in to change notification settings - Fork 0
/
backend.h
47 lines (43 loc) · 1.22 KB
/
backend.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*\
|*| Parity Archive - A way to restore missing files in a set.
|*|
|*| Copyright (C) 2001 Willem Monsuwe ([email protected])
|*|
|*| File format by Stefan Wehlus -
|*| initial idea by Tobias Rieper, further suggestions by Kilroy Balore
|*|
|*| Backend operations
\*/
#ifndef BACKEND_H
#define BACKEND_H
#include "types.h"
#include "par.h"
struct sub_s {
sub_t *next;
int off;
u16 *fs;
int fl;
u16 *ts;
int tl;
};
char * basename(u16 *path);
int unicode_cmp(u16 *a, u16 *b);
int unicode_gt(u16 *a, u16 *b);
hfile_t * hfile_add(u16 *filename);
void hash_directory(char *dir);
int hash_file(hfile_t *file, char type);
int find_file(pfile_t *file, int displ);
hfile_t * find_file_name(u16 *path, int displ);
hfile_t * find_volume(u16 *name, i64 vol);
int move_away(u16 *file, const u8 *ext);
int rename_away(u16 *src, u16 *dst);
u16 * file_numbers(pfile_t **list, pfile_t **files);
int find_volumes(par_t *par, int tofind);
void find_par_files(pfile_t **volumes, pfile_t **files, int part);
par_t * find_all_par_files(void);
int par_control_check(par_t *par);
sub_t * make_sub(u16 *from, u16 *to);
void free_sub(sub_t *sub);
u16 * do_sub(u16 *from, sub_t *sub);
sub_t * find_best_sub(pfile_t *files, int m);
#endif /* BACKEND_H */