Skip to content

Commit 67d276c

Browse files
sabin-rapanianlancetaylor
authored andcommitted
cgo: update documentation on calling C variadic functions
The current implementation does not support calling C variadic functions (as discussed in #975). Document that. Fixes #23537 Change-Id: If4c684a3d135f3c2782a720374dc4c07ea66dcbb Reviewed-on: https://go-review.googlesource.com/90415 Reviewed-by: Ian Lance Taylor <[email protected]>
1 parent efddc16 commit 67d276c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/cmd/cgo/doc.go

+20
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,26 @@ C compilers are aware of this calling convention and adjust
223223
the call accordingly, but Go cannot. In Go, you must pass
224224
the pointer to the first element explicitly: C.f(&C.x[0]).
225225
226+
Calling variadic C functions is not supported. It is possible to
227+
circumvent this by using a C function wrapper. For example:
228+
229+
package main
230+
231+
// #include <stdio.h>
232+
// #include <stdlib.h>
233+
//
234+
// static void myprint(char* s) {
235+
// printf("%s\n", s);
236+
// }
237+
import "C"
238+
import "unsafe"
239+
240+
func main() {
241+
cs := C.CString("Hello from stdio")
242+
C.myprint(cs)
243+
C.free(unsafe.Pointer(cs))
244+
}
245+
226246
A few special functions convert between Go and C types
227247
by making copies of the data. In pseudo-Go definitions:
228248

0 commit comments

Comments
 (0)