summaryrefslogtreecommitdiff
path: root/deps/node/deps/brotli/c/enc/encoder_dict.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/node/deps/brotli/c/enc/encoder_dict.c')
-rw-r--r--deps/node/deps/brotli/c/enc/encoder_dict.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/deps/node/deps/brotli/c/enc/encoder_dict.c b/deps/node/deps/brotli/c/enc/encoder_dict.c
deleted file mode 100644
index 8b2f6ad4..00000000
--- a/deps/node/deps/brotli/c/enc/encoder_dict.c
+++ /dev/null
@@ -1,32 +0,0 @@
-/* Copyright 2017 Google Inc. All Rights Reserved.
-
- Distributed under MIT license.
- See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
-*/
-
-#include "./encoder_dict.h"
-
-#include "../common/dictionary.h"
-#include "../common/transform.h"
-#include "./dictionary_hash.h"
-#include "./hash.h"
-
-#if defined(__cplusplus) || defined(c_plusplus)
-extern "C" {
-#endif
-
-void BrotliInitEncoderDictionary(BrotliEncoderDictionary* dict) {
- dict->words = BrotliGetDictionary();
-
- dict->hash_table = kStaticDictionaryHash;
- dict->buckets = kStaticDictionaryBuckets;
- dict->dict_words = kStaticDictionaryWords;
-
- dict->cutoffTransformsCount = kCutoffTransformsCount;
- dict->cutoffTransforms = kCutoffTransforms;
-
-}
-
-#if defined(__cplusplus) || defined(c_plusplus)
-} /* extern "C" */
-#endif