github.com/0xKiwi/rules_go@v0.24.3/tests/core/cgo/split_import_cgo.go (about) 1 package cgo 2 3 /* 4 #include "tests/core/cgo/split_import_c.h" 5 */ 6 import "C" 7 8 func Half(x int) int { 9 return int(C.half(C.int(x))) 10 }