Files
llgo/compiler/cl/_testrt/hello/libc/libc.go
2025-01-09 00:47:45 +08:00

15 lines
216 B
Go

package libc
import "C"
import _ "unsafe"
const (
LLGoPackage = "decl"
)
//go:linkname Printf C.printf
func Printf(format *int8, __llgo_va_list ...any)
//go:linkname Strlen C.strlen
func Strlen(str *int8) C.int