From 1e01ecb41d392bc06cb13d74a909cd2ec8b40e46 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Sun, 1 Mar 2020 19:49:43 +0000 Subject: [PATCH] Rename folder. --- CMakeLists.txt | 8 ++++---- include/{dicformat => aaruformat}/consts.h | 0 include/{dicformat => aaruformat}/context.h | 0 include/{dicformat => aaruformat}/decls.h | 0 include/{dicformat => aaruformat}/enums.h | 0 include/{dicformat => aaruformat}/errors.h | 0 include/{dicformat => aaruformat}/structs.h | 0 include/dicformat.h | 2 +- src/identify.c | 4 ++-- 9 files changed, 7 insertions(+), 7 deletions(-) rename include/{dicformat => aaruformat}/consts.h (100%) rename include/{dicformat => aaruformat}/context.h (100%) rename include/{dicformat => aaruformat}/decls.h (100%) rename include/{dicformat => aaruformat}/enums.h (100%) rename include/{dicformat => aaruformat}/errors.h (100%) rename include/{dicformat => aaruformat}/structs.h (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index c7ad05f..528f016 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,8 +4,8 @@ project(libdicformat C) set(CMAKE_C_STANDARD 90) add_compile_definitions(__STDC_FORMAT_MACROS=1) -add_library(dicformat SHARED include/dicformat/consts.h include/dicformat/enums.h include/dic.h include/dicformat.h - include/dicformat/decls.h include/dicformat/structs.h src/identify.c src/open.c include/dicformat/context.h - src/close.c include/dicformat/errors.h src/read.c src/crc64.c src/cst.c src/ecc_cd.c src/helpers.c) +add_library(dicformat SHARED include/aaruformat/consts.h include/aaruformat/enums.h include/dic.h include/dicformat.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) -include_directories(include include/dicformat) \ No newline at end of file +include_directories(include include/aaruformat) \ No newline at end of file diff --git a/include/dicformat/consts.h b/include/aaruformat/consts.h similarity index 100% rename from include/dicformat/consts.h rename to include/aaruformat/consts.h diff --git a/include/dicformat/context.h b/include/aaruformat/context.h similarity index 100% rename from include/dicformat/context.h rename to include/aaruformat/context.h diff --git a/include/dicformat/decls.h b/include/aaruformat/decls.h similarity index 100% rename from include/dicformat/decls.h rename to include/aaruformat/decls.h diff --git a/include/dicformat/enums.h b/include/aaruformat/enums.h similarity index 100% rename from include/dicformat/enums.h rename to include/aaruformat/enums.h diff --git a/include/dicformat/errors.h b/include/aaruformat/errors.h similarity index 100% rename from include/dicformat/errors.h rename to include/aaruformat/errors.h diff --git a/include/dicformat/structs.h b/include/aaruformat/structs.h similarity index 100% rename from include/dicformat/structs.h rename to include/aaruformat/structs.h diff --git a/include/dicformat.h b/include/dicformat.h index 183bed1..ea9d6ce 100644 --- a/include/dicformat.h +++ b/include/dicformat.h @@ -2,7 +2,7 @@ // The Disc Image Chef // ---------------------------------------------------------------------------- // -// Filename : dicformat.h +// Filename : aaruformat.h // Author(s) : Natalia Portillo // // Component : libdicformat. diff --git a/src/identify.c b/src/identify.c index 2c80fab..c3ce12e 100644 --- a/src/identify.c +++ b/src/identify.c @@ -34,7 +34,7 @@ #include #include -//! Identifies a file as dicformat, using path +//! Identifies a file as aaruformat, using path /*! * * @param filename path to the file to identify @@ -56,7 +56,7 @@ int identify(const char* filename) return ret; } -//! Identifies a file as dicformat, using an already existing stream +//! Identifies a file as aaruformat, using an already existing stream /*! * * @param imageStream stream of the file to identify