lune/crates/lune-std-ffi/src/c/c_string.rs
2024-10-14 09:37:21 +00:00

8 lines
393 B
XML

// This is a string type that can be given to an external function.
// To be exact, it converts the Lua string into a c_char array and puts it in the box.
// For this part, initially, i wanted to allow box("lua string"),
// but separated it for clarity.
// This also allows operations such as ffi.string:intoBox().
// (Write a string to an already existing box)
// FIXME: use buffer instead?