comparison libmlk-core/core/zfile.h @ 295:aec448037320

rpg: add support for compressed tilesets/maps
author David Demelier <markand@malikania.fr>
date Wed, 10 Mar 2021 16:40:02 +0100
parents
children d01e83210ca2
comparison
equal deleted inserted replaced
294:1606b061e4ce 295:aec448037320
1 /*
2 * zfile.h -- load potentially ZSTD compressed file
3 *
4 * Copyright (c) 2020 David Demelier <markand@malikania.fr>
5 *
6 * Permission to use, copy, modify, and/or distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
18
19 #ifndef MOLKO_CORE_ZFILE_H
20 #define MOLKO_CORE_ZFILE_H
21
22 #include <stdio.h>
23
24 #include "core.h"
25
26 struct zfile {
27 FILE *fp;
28 char *data;
29 };
30
31 CORE_BEGIN_DECLS
32
33 int
34 zfile_open(struct zfile *, const char *);
35
36 void
37 zfile_close(struct zfile *);
38
39 CORE_END_DECLS
40
41 #endif /* !MOLKO_CORE_ZFILE_H */