diff options
Diffstat (limited to 'doc/progs/cgo3.go')
-rw-r--r-- | doc/progs/cgo3.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/progs/cgo3.go b/doc/progs/cgo3.go new file mode 100644 index 000000000..435fd0402 --- /dev/null +++ b/doc/progs/cgo3.go @@ -0,0 +1,17 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. +package print + +// #include <stdio.h> +// #include <stdlib.h> +import "C" +import "unsafe" + +func Print(s string) { + cs := C.CString(s) + C.fputs(cs, (*C.FILE)(C.stdout)) + C.free(unsafe.Pointer(cs)) +} + +// END OMIT |