Merge pull request #905 from luoliwoshang/c/FILE

c:file
This commit is contained in:
xushiwei
2024-12-05 09:56:43 +08:00
committed by GitHub

6
c/c.go
View File

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