Thanks to visit codestin.com
Credit goes to github.com

Skip to content

encounter/cwdemangle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cwdemangle Build Status Latest Version Api Rustdoc Rust Version

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 (requires alloc)

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.

About

CodeWarrior C++ symbol demangler

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages