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