tinygo-org / tinygo

Go compiler for small places. Microcontrollers, WebAssembly (WASM/WASI), and command-line tools. Based on LLVM.
https://tinygo.org
Other
14.72k stars 858 forks source link

Missing C.CBytes #4284

Open hectorchu opened 3 weeks ago

hectorchu commented 3 weeks ago

C.CString is present but C.CBytes is not.

Workaround is unsafe.Pointer(C.CString(string(data))) but that's ugly.