blob: 80333e7a2a8cbafedf72bbe6df834e05e2eba25c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef MANIFEST_H
#define MANIFEST_H
#include "hashutil.h"
#include "hashtable.h"
struct file_hash *manifest_get(const char *manifest_path);
bool manifest_put(const char *manifest_path, struct file_hash *object_hash,
struct hashtable *included_files);
#endif
|