afia-component-sys 0.0.3

A low-level Rust wrapper for `libafia_component`.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![deny(missing_docs)]
#![doc = include_str!("../README.md")]

mod generated;

pub use self::generated::*;

/// A pointer and length pair for a UTF-8 string.
#[repr(C)]
#[allow(missing_docs)]
pub struct AllocatedString {
    pub pointer: *mut u8,
    pub len: usize,
}