⎕FFI
FFI r←[x] ⎕FFI y
Category: FFI
r
is a wrap containing the function described by y
in the dynamic library at path x
, which defaults to the C standard library if not provided. y
is a vector of at least two strings. The first element of y
is the return type of the function; the second element is the name of the symbol; the elements after the second are the arguments of the function. The resulting wrapped function must be called monadically with a vector of arguments.
Types
void
: Cvoid
u8
: Cuint8_t
u16
: Cuint16_t
u32
: Cuint32_t
u64
: Cuint64_t
see notei8
: Cint8_t
i16
: Cint16_t
i32
: Cint32_t
i64
: Cint64_t
see noteuint
: Cunsigned int
int
: Cint
ulong
: Cunsigned long
long
: Clong
usize
: Csize_t
see notef32
: Cfloat
f64
: Cdouble
c8
: Cchar8_t
c16
: Cchar16_t
c32
: Cchar32_t
uchar
: Cunsigned char
char
: Cchar
wchar
: Cwchar_t
str
: Cchar*
[]x
: Cx[]
*x
: Cx*
Note: 64-bit integers don't necessarily fit in the 64-bit floating point type that TinyAPL uses. You won't be able to accurately pass nor be returned values with absolute value greater than
9007199254740991
.
Pointers
Functions that take and return pointers use a special pointer struct with the following members:
address
: a number containing the address pointed tosize
: the size in bytes of the datatype pointed toPeek
: value at offset⍵
in bytesPoke
: write value⍵
to offset⍺
, which defaults to0
Cast
: return a pointer to the same address but with a different datatype⍵
+
: offset a pointer by an integer-
: offset a pointer by an integer, or find the distance between two pointers⧺
: increment a pointer by one byteⵧ
: decrement a pointer by one byte