/* SPDX-License-Identifier: LGPL-2.1-only */ /* Copyright (C) 2021 Gediminas Jakutis */ #ifndef ALGOS_UTIL_H_INCLUDED #define ALGOS_UTIL_H_INCLUDED #include "defs.h" int stream_rewind(struct stream * const restrict in); int split(struct stream * const src, struct stream * const A, struct stream * const B); #endif /* ALGOS_UTIL_H_INCLUDED */