xref: /netbsd-src/external/gpl3/binutils.old/dist/binutils/demanguse.h (revision c42dbd0ed2e61fe6eda8590caa852ccf34719964)
1*c42dbd0eSchristos /* demanguse.h -- libiberty demangler usage
2*c42dbd0eSchristos    Copyright (C) 2021-2022 Free Software Foundation, Inc.
3*c42dbd0eSchristos 
4*c42dbd0eSchristos    This file is part of GNU Binutils.
5*c42dbd0eSchristos 
6*c42dbd0eSchristos    This program is free software; you can redistribute it and/or modify
7*c42dbd0eSchristos    it under the terms of the GNU General Public License as published by
8*c42dbd0eSchristos    the Free Software Foundation; either version 3 of the License, or
9*c42dbd0eSchristos    (at your option) any later version.
10*c42dbd0eSchristos 
11*c42dbd0eSchristos    This program is distributed in the hope that it will be useful,
12*c42dbd0eSchristos    but WITHOUT ANY WARRANTY; without even the implied warranty of
13*c42dbd0eSchristos    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14*c42dbd0eSchristos    GNU General Public License for more details.
15*c42dbd0eSchristos 
16*c42dbd0eSchristos    You should have received a copy of the GNU General Public License
17*c42dbd0eSchristos    along with this program; if not, write to the Free Software
18*c42dbd0eSchristos    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
19*c42dbd0eSchristos    02110-1301, USA.  */
20*c42dbd0eSchristos 
21*c42dbd0eSchristos #ifndef DEMANGUSE_H
22*c42dbd0eSchristos #define DEMANGUSE_H
23*c42dbd0eSchristos 
24*c42dbd0eSchristos #ifdef __cplusplus
25*c42dbd0eSchristos extern "C" {
26*c42dbd0eSchristos #endif
27*c42dbd0eSchristos 
28*c42dbd0eSchristos void display_demangler_styles (FILE *, const char *);
29*c42dbd0eSchristos 
30*c42dbd0eSchristos #ifdef __cplusplus
31*c42dbd0eSchristos }
32*c42dbd0eSchristos #endif
33*c42dbd0eSchristos 
34*c42dbd0eSchristos #endif /* DEMANGUSE_H */
35