From 29712a5098842ea3930ec00ddd1c0b9d264ba9b5 Mon Sep 17 00:00:00 2001 From: Gediminas Jakutis Date: Sun, 21 Feb 2021 13:16:54 +0200 Subject: in-memory array sorting: GET! lists need a bit more work and after that, in-file should shortly follow. Signed-off-by: Gediminas Jakutis --- src/io.h | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 src/io.h (limited to 'src/io.h') diff --git a/src/io.h b/src/io.h deleted file mode 100644 index 91f1f88..0000000 --- a/src/io.h +++ /dev/null @@ -1,19 +0,0 @@ -/* SPDX-License-Identifier: LGPL-2.1-only */ - -/* Copyright (C) 2020 Gediminas Jakutis */ - -#ifndef ALGOS_IO_H_INCLUDED -#define ALGOS_IO_H_INCLUDED - -#include "defs.h" - -int stream_open(struct stream * const in); -int stream_close(struct stream * const in); - -int direct_get_array(struct stream * const restrict in, ssize_t idx, struct entry_l * const data); -int direct_get_list(struct stream * const restrict in, ssize_t idx, struct entry_l * const data); - -int direct_put_array(struct stream * const restrict in, ssize_t idx, const struct entry_l * const data); -int direct_put_list(struct stream * const restrict in, ssize_t idx, const struct entry_l * const data); - -#endif /* ALGOS_IO_H_INCLUDED */ -- cgit v1.2.3