Skip to main content

Mojo module

ffi

Implements a foreign functions interface (FFI).

Aliases

  • c_char = SIMD[int8, 1]: C char type.
  • c_int = SIMD[int32, 1]: C int type.
  • c_long = SIMD[_c_long_dtype(), 1]: C long type.
  • c_long_long = SIMD[_c_long_long_dtype(), 1]: C long long type.
  • c_size_t = UInt: C size_t type.
  • c_ssize_t = Int: C ssize_t type.
  • c_uint = SIMD[uint32, 1]: C unsigned int type.
  • DEFAULT_RTLD = 2.__or__(256 if eq(:string target_get_field(current_target(), "os"), "linux") else 8):
  • OpaquePointer = UnsafePointer[NoneType]: An opaque pointer, equivalent to the C void* type.

Structs

  • DLHandle: Represents a dynamically linked library that can be loaded and unloaded.
  • RTLD: Enumeration of the RTLD flags used during dynamic library loading.

Functions