You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible to add func C.Cbytes([]byte) unsafe.Pointer to the cgo package?
I have copied the C.CString function, minus the added 0 byte a couple times, and this seems like it could be a useful addition. Granted it's only 3 lines to do the malloc and copy, but this would also serve as documentation for users needing to copy data into C.
The text was updated successfully, but these errors were encountered:
Would it be possible to add
func C.Cbytes([]byte) unsafe.Pointer
to the cgo package?I have copied the
C.CString
function, minus the added0
byte a couple times, and this seems like it could be a useful addition. Granted it's only 3 lines to do the malloc and copy, but this would also serve as documentation for users needing to copy data into C.The text was updated successfully, but these errors were encountered: