blob: 05df4207bb72b275fa77e45f0f1735f16b66009a (
plain)
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
|
#ifndef _ALPM_DELTA_H
#define _ALPM_DELTA_H
#include "config.h"
#include <sys/types.h>
#include "alpm.h"
alpm_delta_t *_alpm_delta_parse(char *line);
void _alpm_delta_free(alpm_delta_t *delta);
alpm_delta_t *_alpm_delta_dup(const alpm_delta_t *delta);
off_t _alpm_shortest_delta_path(alpm_handle_t *handle, alpm_list_t *deltas,
const char *to, alpm_list_t **path);
#define MAX_DELTA_RATIO 0.7
#endif
|