#ifndef BROTLI_COMMON_TRANSFORM_H_
#define BROTLI_COMMON_TRANSFORM_H_
#include <brotli/port.h>
#include <brotli/types.h>
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif
enum BrotliWordTransformType { … };
#define BROTLI_TRANSFORMS_MAX_CUT_OFF …
BrotliTransforms;
#define BROTLI_TRANSFORM_PREFIX_ID(T, I) …
#define BROTLI_TRANSFORM_TYPE(T, I) …
#define BROTLI_TRANSFORM_SUFFIX_ID(T, I) …
#define BROTLI_TRANSFORM_PREFIX(T, I) …
#define BROTLI_TRANSFORM_SUFFIX(T, I) …
BROTLI_COMMON_API const BrotliTransforms* BrotliGetTransforms(void);
BROTLI_COMMON_API int BrotliTransformDictionaryWord(
uint8_t* dst, const uint8_t* word, int len,
const BrotliTransforms* transforms, int transform_idx);
#if defined(__cplusplus) || defined(c_plusplus)
}
#endif
#endif