]> git.ipfire.org Git - thirdparty/ccache.git/blob - manifest.h
Handle disappearing temporary stdout file gracefully
[thirdparty/ccache.git] / manifest.h
1 #ifndef MANIFEST_H
2 #define MANIFEST_H
3
4 #include "hashutil.h"
5 #include "hashtable.h"
6
7 struct file_hash *manifest_get(const char *manifest_path);
8 bool manifest_put(const char *manifest_path, struct file_hash *object_hash,
9 struct hashtable *included_files);
10
11 #endif