cbytes_unix.go 195 B

123456789101112131415
  1. // Copyright 2018 visualfc. All rights reserved.
  2. // +build go1.7,!windows
  3. package interp
  4. import (
  5. "unsafe"
  6. )
  7. import "C"
  8. func toCBytes(data []byte) unsafe.Pointer {
  9. return C.CBytes(data)
  10. }