github.com/goplus/llgo@v0.8.3/cl/internal/libc/libc.go (about) 1 package libc 2 3 import "C" 4 import _ "unsafe" 5 6 const ( 7 LLGoPackage = "decl" 8 ) 9 10 //go:linkname Printf C.printf 11 func Printf(format *int8, __llgo_va_list ...any) 12 13 //go:linkname Strlen C.strlen 14 func Strlen(str *int8) C.int