mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 04:17:38 +03:00
17 lines
269 B
Go
17 lines
269 B
Go
package buf
|
|
|
|
func Get(size int) []byte {
|
|
if size == 0 {
|
|
return nil
|
|
}
|
|
return DefaultAllocator.Get(size)
|
|
}
|
|
|
|
func Put(buf []byte) error {
|
|
return DefaultAllocator.Put(buf)
|
|
}
|
|
|
|
// Deprecated: use array instead.
|
|
func Make(size int) []byte {
|
|
return make([]byte, size)
|
|
}
|