Rust implementation of C's va_list
type
This crate provides a rust VaList
type, which is binary-compatible for the C type of the same name. It is intended to allow rust code to provide the complex logic of variable argument functions.
```rust extern crate valist; use valist::VaList;
extern "C" printintsva(count: u32, mut args: VaList)
{
for i in (0 .. count) {
println!("{}: {}", i, args.get::
Licensed under either of
at your option.
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.