Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 417 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 417 Bytes

VCMangler

Mangling and Demangling of VC++ names in Haskell

This project aims provide a parser for converting mangled VC++ names into a Haskell data structure and back as well as pretty printing functionality.

Example:

parseMangledName "?pow@@YANNN@Z"

Returns:

Right (Function (Name "pow") (Global Near CDecl) Double_ [Double_,Double_])

TODO:

  • Thunks
  • Virtual Function Tables