〽️
Pattern Language
Home
  • Pattern Language
  • Core Language
    • Data Types
    • Variable Placement
    • Namespaces
    • Expressions
    • Functions
    • Control flow
    • In / Out Variables
    • Attributes
    • Preprocessor
    • Importing Modules
    • Comments
    • Sections
  • Libraries
    • hex
      • provider
      • core
      • http
      • dec
      • mangled
      • encstr
      • instruction
      • json
    • std
      • array
      • limits
      • random
      • file
      • core
      • ptr
      • mem
      • math
      • hash
      • fxpt
      • sys
      • io
      • time
      • string
      • attrs
      • ctype
      • bit
    • type
      • mac
      • ip
      • byte
      • path
      • size
      • base
      • guid
      • float16
      • bcd
      • leb128
      • time
      • fmt
      • color
      • c
      • win32
      • 010
      • linux
      • rust
      • base64
      • magic
Powered by GitBook
On this page
  • Types
  • __int128_t
  • __int64_t
  • __uint128_t
  • __uint64_t
  • char16_t
  • char32_t
  • char8_t
  • int
  • int128_t
  • int16_t
  • int32_t
  • int64_t
  • int8_t
  • intptr_t
  • long
  • ptrdiff_t
  • short
  • size_t
  • ssize_t
  • uint128_t
  • uint16_t
  • uint32_t
  • uint64_t
  • uint8_t
  • uintptr_t
  • wchar_t

Was this helpful?

Edit on GitHub
  1. Libraries
  2. type

c

Alias definitions for all C stdint and regular data types

Types

__int128_t

using __int128_t = s128;

__int64_t

using __int64_t = s64;

__uint128_t

using __uint128_t = u128;

__uint64_t

using __uint64_t = u64;

char16_t

using char16_t = char16;

char32_t

using char32_t = u32;

char8_t

using char8_t = char;

int

using int = s32;

int128_t

using int128_t = s128;

int16_t

using int16_t = s16;

int32_t

using int32_t = s32;

int64_t

using int64_t = s64;

int8_t

using int8_t = s8;

intptr_t

using intptr_t = s64;

long

using long = s32;

ptrdiff_t

using ptrdiff_t = s64;

short

using short = s16;

size_t

using size_t = u64;

ssize_t

using ssize_t = s64;

uint128_t

using uint128_t = u128;

uint16_t

using uint16_t = u16;

uint32_t

using uint32_t = u32;

uint64_t

using uint64_t = u64;

uint8_t

using uint8_t = u8;

uintptr_t

using uintptr_t = u64;

wchar_t

using wchar_t = char16;

Last updated 8 days ago

Was this helpful?