2016-11-29 17:26:36 +01:00
|
|
|
// Copyright 2016 The Snappy-Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2019-03-27 12:15:23 +01:00
|
|
|
// +build !appengine
|
|
|
|
// +build gc
|
|
|
|
// +build !noasm
|
|
|
|
|
2016-11-29 17:26:36 +01:00
|
|
|
package snappy
|
|
|
|
|
|
|
|
// decode has the same semantics as in decode_other.go.
|
|
|
|
//
|
|
|
|
//go:noescape
|
|
|
|
func decode(dst, src []byte) int
|