From 9075ab8bd6b251c418ccadc060a5d4a2918cac25 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Sun, 1 Mar 2020 19:51:43 +0000 Subject: [PATCH] Rename headers. --- CMakeLists.txt | 2 +- include/{dic.h => aaru.h} | 0 include/{dicformat.h => aaruformat.h} | 0 include/aaruformat/structs.h | 2 +- src/helpers.c | 2 +- 5 files changed, 3 insertions(+), 3 deletions(-) rename include/{dic.h => aaru.h} (100%) rename include/{dicformat.h => aaruformat.h} (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3c44a55..3ba64ad 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ project(libaaruformat C) set(CMAKE_C_STANDARD 90) add_compile_definitions(__STDC_FORMAT_MACROS=1) -add_library(aaruformat SHARED include/aaruformat/consts.h include/aaruformat/enums.h include/dic.h include/aaruformat.h +add_library(aaruformat SHARED include/aaruformat/consts.h include/aaruformat/enums.h include/aaru.h include/aaruformat.h include/aaruformat/decls.h include/aaruformat/structs.h src/identify.c src/open.c include/aaruformat/context.h src/close.c include/aaruformat/errors.h src/read.c src/crc64.c src/cst.c src/ecc_cd.c src/helpers.c) diff --git a/include/dic.h b/include/aaru.h similarity index 100% rename from include/dic.h rename to include/aaru.h diff --git a/include/dicformat.h b/include/aaruformat.h similarity index 100% rename from include/dicformat.h rename to include/aaruformat.h diff --git a/include/aaruformat/structs.h b/include/aaruformat/structs.h index 08bd3c5..ca98f74 100644 --- a/include/aaruformat/structs.h +++ b/include/aaruformat/structs.h @@ -39,7 +39,7 @@ #include "enums.h" -#include +#include #include #include diff --git a/src/helpers.c b/src/helpers.c index 9c89872..e82f61f 100644 --- a/src/helpers.c +++ b/src/helpers.c @@ -30,8 +30,8 @@ // Copyright © 2011-2020 Natalia Portillo // ****************************************************************************/ +#include #include -#include // Converts between image data type and dic media tag type int32_t GetMediaTagTypeForDataType(int32_t type)