1
0
mirror of https://github.com/fumiama/go-base16384.git synced 2026-06-05 00:32:52 +08:00
Files
go-base16384/mem.go
2021-08-08 11:19:04 +08:00

11 lines
166 B
Go

package base14
// #include <stdlib.h>
import "C"
import "unsafe"
// Free memory allocated by encode / decode
func Free(b []byte) {
C.free(unsafe.Pointer(&b[0]))
}