Function wavpack::get_library_version_string[][src]

pub fn get_library_version_string() -> &'static str
Expand description

Return the WavPack library version as a string.

As of this writing this is “5.0.0”.

use wavpack::get_library_version_string;
let version = get_library_version_string();
println!("{}", version); // If version is 5.1.0, this prints `5.1.0`.