Skip to content

Modulon 1.1-beta2

Pre-release
Pre-release

Choose a tag to compare

@roccohimel roccohimel released this 11 Sep 13:07
· 52 commits to main since this release

Removed types like:

  • INT for int
  • VD for void
  • C for char
  • CC for const char

I removed them and instead made them standard C types. Also, I also added new types.

New Modulon C types:

  • _Bool
  • bool
  • long
  • signed long
  • unsigned long
  • long long
  • signed long long
  • unsigned long long
  • float
  • long double
  • ssize_t
  • ptrdiff_t
  • intptr_t
  • uintptr_t
  • intmax_t
  • uintmax_t
  • int_least8_t
  • uint_least8_t
  • int_least16_t
  • uint_least16_t
  • int_least32_t
  • uint_least32_t
  • int_least64_t
  • uint_least64_t
  • int_fast8_t
  • uint_fast8_t
  • int_fast16_t
  • uint_fast16_t
  • int_fast32_t
  • uint_fast32_t
  • int_fast64_t
  • uint_fast64_t