milvus/internal/util/cgoconverter/test_utils.go

20 lines
301 B
Go
Raw Normal View History

package cgoconverter
/*
#include <stdlib.h>
#include <string.h>
*/
import "C"
import "unsafe"
func copyToCBytes(data []byte) unsafe.Pointer {
return C.CBytes(data)
}
func mallocCBytes(v byte, len int) unsafe.Pointer {
p := C.malloc(C.ulong(len))
C.memset(p, C.int(v), C.ulong(len))
return p
}