From c68444ff76eff88fbfa63a3ddbd6b9ce72337159 Mon Sep 17 00:00:00 2001 From: Gediminas Jakutis Date: Sat, 13 Mar 2021 21:26:49 +0200 Subject: complete core featureset with linked list files. Signed-off-by: Gediminas Jakutis --- src/main.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index d82b0d6..1bac2de 100644 --- a/src/main.c +++ b/src/main.c @@ -240,6 +240,10 @@ static int load_io_functions(struct settings const * const s, struct stream * co in->get = file_get_array; in->put = file_put_array; in->copy = stream_copy_range; + } else { /* if (s->format == list */ + in->get = file_get_list; + in->put = file_put_list; + in->copy = stream_copy_range; } } -- cgit v1.2.3