From 4a14ab7ab48e3fd591dde33d59c6d29fc39f1c5d Mon Sep 17 00:00:00 2001 From: Gediminas Jakutis Date: Thu, 11 Feb 2021 08:17:03 +0200 Subject: continue the overhaul. we can finally create a basic array input data file too! Signed-off-by: Gediminas Jakutis --- src/cache.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/cache.h') 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); -- cgit v1.2.3