2022-05-28 12:57:21 +01:00
|
|
|
/*
|
|
|
|
|
* This file is part of the Aaru Data Preservation Suite.
|
2025-08-01 21:19:45 +01:00
|
|
|
* Copyright (c) 2019-2025 Natalia Portillo.
|
2022-05-28 12:57:21 +01:00
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU Lesser General Public License as
|
|
|
|
|
* published by the Free Software Foundation; either version 2.1 of the
|
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library is distributed in the hope that it will be useful, but
|
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
2019-03-16 18:38:57 +00:00
|
|
|
|
2020-03-01 19:53:05 +00:00
|
|
|
#ifndef LIBAARUFORMAT_AARUFORMAT_H
|
|
|
|
|
#define LIBAARUFORMAT_AARUFORMAT_H
|
2019-03-16 18:38:57 +00:00
|
|
|
|
2020-03-01 19:53:05 +00:00
|
|
|
#define LIBAARUFORMAT_MAJOR_VERSION 1
|
|
|
|
|
#define LIBAARUFORMAT_MINOR_VERSION 0
|
2019-03-17 20:39:40 +00:00
|
|
|
|
2020-03-01 19:51:13 +00:00
|
|
|
#include "aaruformat/consts.h"
|
|
|
|
|
#include "aaruformat/context.h"
|
2022-05-28 12:50:10 +01:00
|
|
|
#include "aaruformat/crc64.h"
|
2020-03-01 19:51:13 +00:00
|
|
|
#include "aaruformat/decls.h"
|
2022-10-03 18:16:11 +01:00
|
|
|
#include "aaruformat/endian.h"
|
2020-03-01 19:51:13 +00:00
|
|
|
#include "aaruformat/enums.h"
|
|
|
|
|
#include "aaruformat/errors.h"
|
2022-10-02 16:05:25 +01:00
|
|
|
#include "aaruformat/lru.h"
|
2022-05-28 12:31:54 +01:00
|
|
|
#include "aaruformat/simd.h"
|
2022-05-28 13:17:05 +01:00
|
|
|
#include "aaruformat/spamsum.h"
|
2022-05-28 12:57:21 +01:00
|
|
|
#include "aaruformat/structs.h"
|
2019-03-16 18:38:57 +00:00
|
|
|
|
2024-04-30 15:51:32 +01:00
|
|
|
#endif // LIBAARUFORMAT_AARUFORMAT_H
|