Files
llgo/compiler/cl/internal/libc/libc.go

15 lines
216 B
Go
Raw Normal View History

2024-04-26 05:51:30 +08:00
package libc
import "C"
import _ "unsafe"
const (
2024-04-29 09:51:32 +08:00
LLGoPackage = "decl"
2024-04-26 05:51:30 +08:00
)
//go:linkname Printf C.printf
2024-04-26 05:51:30 +08:00
func Printf(format *int8, __llgo_va_list ...any)
//go:linkname Strlen C.strlen
2024-04-26 05:51:30 +08:00
func Strlen(str *int8) C.int