13 lines
173 B
C
13 lines
173 B
C
#ifndef TREE_H
|
|
#define TREE_H
|
|
|
|
#include <zlib.h>
|
|
|
|
#include "utilities.h"
|
|
#include "hash.h"
|
|
|
|
typedef List FileInfoBuffer;
|
|
|
|
void snapshot_tree(PathBuffer*);
|
|
|
|
#endif // TREE_H
|