nibb_core/ffi/
mod.rs

1//! # FFI interface for Nib
2//!
3//! These functions provide a C-compatible API for interacting with the snippet system.
4//! All returned strings must be freed using [`free_string_ffi`].
5//!
6//! Designed for use in Lua, C, Python, TypeScript, and other native environments.
7pub mod ffi;
8mod ffi_utils;