Skip to content

Commit

Permalink
Merge pull request #918 from tsingbx/c/_types
Browse files Browse the repository at this point in the history
include/_types: add Uint8T, Uint16T, Uint32T, Uint64T, IntmaxT, UintmaxT
  • Loading branch information
xushiwei authored Dec 17, 2024
2 parents 04d09eb + 6ce4644 commit 424670d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions c/c.go
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 424670d

Please sign in to comment.