about summary refs log tree commit diff
path: root/pkgs/build-support/build-sandbox/src/path-cache.h
blob: 368f8d170abec56276d842a288d4ecd815155542 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#ifndef _PATH_CACHE_H
#define _PATH_CACHE_H

typedef void *path_cache;

path_cache new_path_cache(void);
void free_path_cache(path_cache pc);
bool cache_path(path_cache pc, const char *path);

#endif