This commit is contained in:
luoliwoshang
2024-12-04 15:02:54 +08:00
parent 7e9542e79a
commit 0a4ce9d65e

6
c/c.go
View File

@@ -33,9 +33,13 @@ type (
Float = float32
Double = float64
Pointer = unsafe.Pointer
FilePtr = unsafe.Pointer
FilePtr = *FILE
)
type FILE struct {
Unused [8]byte
}
type (
Int C.int
Uint C.uint