예제 #1
0
파일: hello.go 프로젝트: Garfiled/Rep
func main() {

	C.sayhello()
	i := 100
	ip := unsafe.Pointer(&i)
	C.add((*C.int)(ip))
	fmt.Println(i)
	C.say((*C.int)(ip))
	fmt.Println(i)
}
예제 #2
0
파일: issue3945.go 프로젝트: h8liu/golang
func testPrintf(t *testing.T) {
	C.say()
}