mirror of
https://github.com/fumiama/go-base16384.git
synced 2026-06-05 00:32:52 +08:00
11 lines
166 B
Go
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]))
|
|
}
|