AdeptLanguage / Adept

The Adept Programming Language
GNU General Public License v3.0
119 stars 9 forks source link

Please translate `stdint.h` #275

Open ghost opened 8 months ago

ghost commented 8 months ago

It will help translating C headers easier.

IsaacShelton commented 8 months ago

Unlike in C, the int types are well defined so you should probably be able to just do a replace-all

alias int8_t = byte
alias int16_t = short
alias int32_t = int
alias int64_t = long
alias uint8_t = ubyte
alias uint16_t = ushort
alias uint32_t = uint
alias uint64_t = ulong