#unsafe #c

no-std va_list

Provides a rust implementation of the 'va_list' type for a small set of ABIs. Allowing rust implementations of functions like vprintf.

8 releases

Uses old Rust 2015

0.1.4 Apr 3, 2022
0.1.3 Nov 18, 2018
0.1.1 Oct 21, 2018
0.1.0 Nov 11, 2016
0.0.1 Jun 7, 2015

#72 in FFI

Download history 2263/week @ 2023-12-17 1571/week @ 2023-12-24 998/week @ 2023-12-31 1898/week @ 2024-01-07 2187/week @ 2024-01-14 2394/week @ 2024-01-21 2969/week @ 2024-01-28 3006/week @ 2024-02-04 3057/week @ 2024-02-11 2977/week @ 2024-02-18 3448/week @ 2024-02-25 3314/week @ 2024-03-03 3731/week @ 2024-03-10 4007/week @ 2024-03-17 4210/week @ 2024-03-24 4208/week @ 2024-03-31

16,470 downloads per month
Used in 16 crates (7 directly)

MIT/Apache

16KB
381 lines

Rust implementation of C's va_list type

Overview

This crate provides a rust VaListtype, 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

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.

No runtime deps