A CodeWarrior C++ symbol demangler.
Static binaries available from releases or install via cargo install cwdemangle-bin.
cwdemangle 'BuildLight__9CGuiLightCFv'Pass --help to see available options.
- No dependencies
#![no_std]compatible (requiresalloc)
Cargo.toml:
[dependencies]
cwdemangle = "0.2"Usage:
use cwdemangle::{demangle, DemangleOptions};
let result = demangle("BuildLight__9CGuiLightCFv", &DemangleOptions::default());
assert_eq!(result, Some("CGuiLight::BuildLight() const".to_string()));This project is dedicated to the public domain under the Creative Commons CC0 1.0 Universal (CC0-1.0) Public Domain Dedication.
See LICENSE for the full text.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you is contributed under CC0-1.0 as well.