blob: 92ed49aaab78128e46a2d4996020a6527995e37e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: LGPL-2.1-only */
/* Copyright (C) 2020 Gediminas Jakutis */
#ifndef ALGOS_DATAGEN_H_INCLUDED
#define ALGOS_DATAGEN_H_INCLUDED
#include "defs.h"
struct entry_l *gen_get_array(struct stream * const in, struct entry_l * const store);
struct entry_l *gen_get_list(struct stream * const in, struct entry_l * const store);
#endif /* ALGOS_DATAGEN_H_INCLUDED */
|