Crates.io | byte-strings |
lib.rs | byte-strings |
version | 0.3.1 |
source | src |
created_at | 2019-02-16 22:37:41.480084 |
updated_at | 2023-06-12 23:29:28.750968 |
description | Rust byte strings manipulation, for a better and safer C FFI |
homepage | |
repository | https://github.com/danielhenrymantilla/byte-strings-rs |
max_upload_size | |
id | 115259 |
size | 34,267 |
::byte-strings
Rust zero-cost byte strings manipulation, for a better and safer FFI
Featuring the c_str!
macro to create valid C string literals with
literally no runtime cost!
#[macro_use]
extern crate byte_strings;
/// Some lib
mod safe {
use ::std::{
ffi::CStr,
os::raw::{c_char, c_int},
};
/// private unsafe C FFI
mod ffi {
use super::*;
extern "C" {
pub
fn puts (_: *const c_char)
-> c_int
;
}
}
/// lib API: safe Rust wrapper => uses `CStr`
pub
fn puts (message: &'_ CStr)
-> i32
{
unsafe {
ffi::puts(message.as_ptr()) as i32
}
}
}
fn main ()
{
safe::puts(c!("Hello, World!"));
}