source: src/SymTab/Demangle.h @ 8984003

Last change on this file since 8984003 was c649d2c, checked in by Andrew Beach <ajbeach@…>, 6 months ago

Updated the demangler to also demangle operator names. You can also pass a filename to demangle now. There is also a test, but I don't really know what good tests are for the demangler.

  • Property mode set to 100644
File size: 735 bytes
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2018 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// Demangle.h -- Convert a mangled name into a human readable name.
8//
9// Author           : Andrew Beach
10// Created On       : Fri May 13 10:11:00 2022
11// Last Modified By : Andrew Beach
12// Last Modified On : Mon Nov  6 15:48:00 2023
13// Update Count     : 1
14//
15
16#pragma once
17
18extern "C" {
19        /// Main interface to the demangler as a utility.
20        /// Caller must free the returned string.
21        char * cforall_demangle(const char *, int);
22}
23
24// Local Variables: //
25// tab-width: 4 //
26// mode: c++ //
27// compile-command: "make install" //
28// End: //
Note: See TracBrowser for help on using the repository browser.