aboutsummaryrefslogtreecommitdiff
path: root/c/dec
diff options
context:
space:
mode:
authorEugene Kliuchnikov <eustas.ru@gmail.com>2021-09-08 09:18:45 +0200
committerGitHub <noreply@github.com>2021-09-08 09:18:45 +0200
commit62662f87cdd96deda90ac817de94e3c4af75226a (patch)
tree6052197cad3d5c40792f2acdc5b8521efd9f4b67 /c/dec
parent698e3a7f9d3000fa44174f5be415bf713f71bd0e (diff)
downloadbrotli-62662f87cdd96deda90ac817de94e3c4af75226a.zip
brotli-62662f87cdd96deda90ac817de94e3c4af75226a.tar.gz
brotli-62662f87cdd96deda90ac817de94e3c4af75226a.tar.bz2
Strip "./" in includes (#925)
Co-authored-by: Eugene Kliuchnikov <eustas@chromium.org>
Diffstat (limited to 'c/dec')
-rw-r--r--c/dec/bit_reader.c2
-rw-r--r--c/dec/decode.c8
-rw-r--r--c/dec/huffman.c2
-rw-r--r--c/dec/state.c4
-rw-r--r--c/dec/state.h4
5 files changed, 10 insertions, 10 deletions
diff --git a/c/dec/bit_reader.c b/c/dec/bit_reader.c
index 7f7b256..3dc848b 100644
--- a/c/dec/bit_reader.c
+++ b/c/dec/bit_reader.c
@@ -6,7 +6,7 @@
/* Bit reading helpers */
-#include "./bit_reader.h"
+#include "bit_reader.h"
#include "../common/platform.h"
#include <brotli/types.h>
diff --git a/c/dec/decode.c b/c/dec/decode.c
index 12cd502..7370daa 100644
--- a/c/dec/decode.c
+++ b/c/dec/decode.c
@@ -16,10 +16,10 @@
#include "../common/shared_dictionary_internal.h"
#include "../common/transform.h"
#include "../common/version.h"
-#include "./bit_reader.h"
-#include "./huffman.h"
-#include "./prefix.h"
-#include "./state.h"
+#include "bit_reader.h"
+#include "huffman.h"
+#include "prefix.h"
+#include "state.h"
#if defined(BROTLI_TARGET_NEON)
#include <arm_neon.h>
diff --git a/c/dec/huffman.c b/c/dec/huffman.c
index 30c40d3..8f127d7 100644
--- a/c/dec/huffman.c
+++ b/c/dec/huffman.c
@@ -6,7 +6,7 @@
/* Utilities for building Huffman decoding tables. */
-#include "./huffman.h"
+#include "huffman.h"
#include <string.h> /* memcpy, memset */
diff --git a/c/dec/state.c b/c/dec/state.c
index 66d6820..e3170c1 100644
--- a/c/dec/state.c
+++ b/c/dec/state.c
@@ -4,13 +4,13 @@
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
-#include "./state.h"
+#include "state.h"
#include <stdlib.h> /* free, malloc */
#include "../common/dictionary.h"
#include <brotli/types.h>
-#include "./huffman.h"
+#include "huffman.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
diff --git a/c/dec/state.h b/c/dec/state.h
index 7127581..81e6bb6 100644
--- a/c/dec/state.h
+++ b/c/dec/state.h
@@ -15,8 +15,8 @@
#include <brotli/shared_dictionary.h>
#include "../common/transform.h"
#include <brotli/types.h>
-#include "./bit_reader.h"
-#include "./huffman.h"
+#include "bit_reader.h"
+#include "huffman.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {