13 lines
304 B
C
13 lines
304 B
C
#ifndef TREE_H
|
|
#define TREE_H
|
|
|
|
#include <zlib.h>
|
|
|
|
#include "utilities.h"
|
|
#include "hash.h"
|
|
|
|
void snapshot_tree(FileInfoBuffer*, char*);
|
|
int save_tree_diff(FileInfoBuffer*, char*, char*, size_t, char*, char*);
|
|
int save_tree_diff_internal(ActionList*, char*, char*, char*, File*, char*);
|
|
|
|
#endif // TREE_H
|