comparison src/libmlk-core/core/vfs-zip.h @ 411:d74f53299252

make: add basic GNU make support
author David Demelier <markand@malikania.fr>
date Fri, 07 Oct 2022 14:35:31 +0200
parents 460c78706989
children
comparison
equal deleted inserted replaced
410:1bf7d6669f0a 411:d74f53299252
17 */ 17 */
18 18
19 #ifndef MLK_CORE_VFS_ZIP_H 19 #ifndef MLK_CORE_VFS_ZIP_H
20 #define MLK_CORE_VFS_ZIP_H 20 #define MLK_CORE_VFS_ZIP_H
21 21
22 #include "config.h"
23
24 #if defined(MLK_WITH_ZIP)
25
22 #include "core.h" 26 #include "core.h"
23 27
24 struct vfs; 28 struct vfs;
25 29
26 CORE_BEGIN_DECLS 30 CORE_BEGIN_DECLS
28 int 32 int
29 vfs_zip(struct vfs *, const char *, const char *); 33 vfs_zip(struct vfs *, const char *, const char *);
30 34
31 CORE_END_DECLS 35 CORE_END_DECLS
32 36
37 #endif /* !MLK_WITH_ZIP */
38
33 #endif /* !MLK_CORE_VFS_ZIP_H */ 39 #endif /* !MLK_CORE_VFS_ZIP_H */