cwdemangle [![Build Status]][actions] [![Latest Version]][crates.io] [![Api Rustdoc]][rustdoc] ![Rust Version]
January 28, 2026 ยท View on GitHub
A CodeWarrior C++ symbol demangler.
Usage
CLI
Static binaries available from releases or install via cargo install cwdemangle-bin.
cwdemangle 'BuildLight__9CGuiLightCFv'
Pass --help to see available options.
Library
- 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()));
License
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.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you is contributed under CC0-1.0 as well.