Skip to main content

afia_component_sys/
lib.rs

1#![deny(missing_docs)]
2#![doc = include_str!("../README.md")]
3
4mod generated;
5
6pub use self::generated::*;
7
8/// A pointer and length pair for a UTF-8 string.
9#[repr(C)]
10#[allow(missing_docs)]
11pub struct AllocatedString {
12    pub pointer: *mut u8,
13    pub len: usize,
14}