ccache/manifest.h

14 lines
379 B
C
Raw Normal View History

#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);
2010-11-02 17:41:07 +00:00
bool manifest_dump(const char *manifest_path, FILE *stream);
#endif