GFXprim
2D bitmap graphics library with emphasis on speed and correctness
Loading...
Searching...
No Matches
gp_rar.h
1// SPDX-License-Identifier: LGPL-2.1-or-later
2/*
3 * Copyright (C) 2009-2021 Cyril Hrubis <metan@ucw.cz>
4 */
5
6 /*
7
8 Rar container using libarchive.
9
10 */
11
12#ifndef LOADERS_GP_RAR_H
13#define LOADERS_GP_RAR_H
14
15#include <loaders/gp_container.h>
16
17extern const gp_container_ops gp_rar_ops;
18
19int gp_match_rar(const void *buf);
20
21#endif /* LOADERS_GP_RAR_H */