9 releases
Uses old Rust 2015
0.2.0 | Jul 4, 2024 |
---|---|
0.1.4 | Apr 3, 2022 |
0.1.3 | Nov 18, 2018 |
0.1.1 | Oct 21, 2018 |
0.0.1 | Jun 7, 2015 |
#35 in FFI
25,119 downloads per month
Used in 18 crates
(7 directly)
13KB
303 lines
Rust implementation of C's va_list
type
Overview
This crate provides a rust VaList
type, which is binary-compatible for the C va_list
type. It is intended to allow rust code to provide the complex logic of variable argument functions.
Example
extern crate va_list;
use va_list::VaList;
extern "C" print_ints_va(count: u32, mut args: VaList)
{
for i in (0 .. count) {
println!("{}: {}", i, args.get::<i32>());
}
}
Status
- x86-64 linux/ELF ABI (aka System-V) : Tested in the wild, works relatively well
- x86 linux/ELF ABI (sys-v) : Unit tested only
License
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.