| 
            Last change
 on this file since 43ab5fb was             c92bdcc, checked in by Andrew Beach <ajbeach@…>, 18 months ago           | 
        
        
          | 
             
Updated the rest of the names in src/ (except for the generated files). 
 
           | 
        
        
          
            
              - 
Property                 mode
 set to                 
100644
               
             
           | 
        
        
          | 
            File size:
            737 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.hpp -- 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 | 
 | 
|---|
| 18 | extern "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.