16 lines
329 B
Go
16 lines
329 B
Go
package brotli
|
|
|
|
/* Copyright 2013 Google Inc. All Rights Reserved.
|
|
|
|
Distributed under MIT license.
|
|
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* Common types used in decoder and encoder API.
|
|
*/
|
|
const BROTLI_UINT32_MAX = (^(uint32(0)))
|
|
|
|
const BROTLI_SIZE_MAX = (^(uint(0)))
|