GDB (API)
|
00001 /* Basic C++ demangling support for GDB. 00002 Copyright (C) 2011-2013 Free Software Foundation, Inc. 00003 00004 This file is part of GDB. 00005 00006 This program is free software; you can redistribute it and/or modify 00007 it under the terms of the GNU General Public License as published by 00008 the Free Software Foundation; either version 3 of the License, or 00009 (at your option) any later version. 00010 00011 This program is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 GNU General Public License for more details. 00015 00016 You should have received a copy of the GNU General Public License 00017 along with this program. If not, see <http://www.gnu.org/licenses/>. */ 00018 00019 #ifndef GDB_DEMANGLE_H 00020 #define GDB_DEMANGLE_H 00021 00022 /* Nonzero means that encoded C++/ObjC names should be printed out in their 00023 C++/ObjC form rather than raw. */ 00024 extern int demangle; 00025 00026 /* Nonzero means that encoded C++/ObjC names should be printed out in their 00027 C++/ObjC form even in assembler language displays. If this is set, but 00028 DEMANGLE is zero, names are printed raw, i.e. DEMANGLE controls. */ 00029 extern int asm_demangle; 00030 00031 /* Check if a character is one of the commonly used C++ marker characters. */ 00032 extern int is_cplus_marker (int); 00033 00034 #endif /* GDB_DEMANGLE_H */