Crates.io | printf |
lib.rs | printf |
version | 0.1.0 |
source | src |
created_at | 2017-03-03 19:30:16.535266 |
updated_at | 2017-03-03 19:30:16.535266 |
description | A library to convert a fmt string and va_list into rust String |
homepage | |
repository | https://github.com/derekdreery/alpm |
max_upload_size | |
id | 8795 |
size | 2,237 |
This library provides a single method that takes a format string and arg list
that would be used in functions like printf and returns a formatted string. It
is expected that the arg list be created in C code using va_start
.
I created this lib specifically to help in wrapping c libraries that expect printf-style function callbacks.