diff options
Diffstat (limited to 'src/cache.h')
-rw-r--r-- | src/cache.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/cache.h b/src/cache.h index 9f333d3..055a686 100644 --- a/src/cache.h +++ b/src/cache.h @@ -9,15 +9,14 @@ #include "defs.h" /* INIT|DESTROY */ -int cache_create(struct stream * const in, const struct settings * const restrict s); +int cache_create(struct stream * const in); int cache_populate(struct stream * const in); -int cache_flush(struct stream * const in); int cache_destroy(struct stream * const in); /* BLOCKMANIP */ int cache_transfer(struct stream * const src, struct stream * const dest); -int cache_block_copy(struct stream const * const src, struct stream * const dest, const struct settings * const s); -int cache_list_copy(struct stream const * const src, struct stream * const dest, const struct settings * const s); +int cache_block_copy(struct stream const * const src, struct stream * const dest); +int cache_list_copy(struct stream const * const src, struct stream * const dest); int cache_block_split(struct stream * const src, struct stream * const A, struct stream * const B); int cache_list_split(struct stream * const src, struct stream * const A, struct stream * const B); |