From 6ce4644120df47ce21aae3e009e01b83e35d35c2 Mon Sep 17 00:00:00 2001 From: tsingbx Date: Mon, 16 Dec 2024 18:15:01 +0800 Subject: [PATCH] include/_types: add Uint8T, Uint16T, Uint32T, Uint64T, IntmaxT, UintmaxT --- c/c.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/c/c.go b/c/c.go index 571f6e06..6c9c5713 100644 --- a/c/c.go +++ b/c/c.go @@ -64,6 +64,14 @@ type Int16T = int16 type Int32T = int32 type Int64T = int64 +type Uint8T = uint8 +type Uint16T = uint16 +type Uint32T = uint32 +type Uint64T = uint64 + +type IntmaxT = LongLong +type UintmaxT = UlongLong + //go:linkname Str llgo.cstr func Str(string) *Char