]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* C language support definitions for GDB, the GNU debugger. |
9519ccd5 | 2 | |
6aba47ca | 3 | Copyright (C) 1992, 1994, 1995, 1996, 1997, 1998, 2000, 2002, 2005, 2006, |
0fb0cc75 | 4 | 2007, 2008, 2009 Free Software Foundation, Inc. |
c906108c | 5 | |
c5aa993b | 6 | This file is part of GDB. |
c906108c | 7 | |
c5aa993b JM |
8 | This program is free software; you can redistribute it and/or modify |
9 | it under the terms of the GNU General Public License as published by | |
a9762ec7 | 10 | the Free Software Foundation; either version 3 of the License, or |
c5aa993b | 11 | (at your option) any later version. |
c906108c | 12 | |
c5aa993b JM |
13 | This program is distributed in the hope that it will be useful, |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | GNU General Public License for more details. | |
c906108c | 17 | |
c5aa993b | 18 | You should have received a copy of the GNU General Public License |
a9762ec7 | 19 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
c906108c SS |
20 | |
21 | ||
22 | #if !defined (C_LANG_H) | |
23 | #define C_LANG_H 1 | |
24 | ||
da3331ec | 25 | struct ui_file; |
e9667a65 | 26 | struct language_arch_info; |
da3331ec | 27 | |
c906108c | 28 | #include "value.h" |
84f0252a | 29 | #include "macroexp.h" |
c906108c SS |
30 | |
31 | ||
a14ed312 | 32 | extern int c_parse (void); /* Defined in c-exp.y */ |
c906108c | 33 | |
a14ed312 | 34 | extern void c_error (char *); /* Defined in c-exp.y */ |
c906108c | 35 | |
d9fcf2fb JM |
36 | /* Defined in c-typeprint.c */ |
37 | extern void c_print_type (struct type *, char *, struct ui_file *, int, | |
38 | int); | |
c906108c | 39 | |
5c6ce71d TT |
40 | extern void c_print_typedef (struct type *, struct symbol *, struct ui_file *); |
41 | ||
fc1a4b47 | 42 | extern int c_val_print (struct type *, const gdb_byte *, int, CORE_ADDR, |
79a45b7d TT |
43 | struct ui_file *, int, |
44 | const struct value_print_options *); | |
c906108c | 45 | |
79a45b7d TT |
46 | extern int c_value_print (struct value *, struct ui_file *, |
47 | const struct value_print_options *); | |
c906108c SS |
48 | |
49 | /* These are in c-lang.c: */ | |
50 | ||
d9fcf2fb | 51 | extern void c_printchar (int, struct ui_file *); |
c906108c | 52 | |
fc1a4b47 | 53 | extern void c_printstr (struct ui_file * stream, const gdb_byte *string, |
d9fcf2fb | 54 | unsigned int length, int width, |
79a45b7d TT |
55 | int force_ellipses, |
56 | const struct value_print_options *options); | |
c906108c | 57 | |
e9667a65 AC |
58 | extern void c_language_arch_info (struct gdbarch *gdbarch, |
59 | struct language_arch_info *lai); | |
c906108c SS |
60 | |
61 | /* These are in c-typeprint.c: */ | |
62 | ||
d9fcf2fb | 63 | extern void c_type_print_base (struct type *, struct ui_file *, int, int); |
c906108c | 64 | |
c906108c SS |
65 | /* These are in cp-valprint.c */ |
66 | ||
fc1a4b47 | 67 | extern void cp_print_class_member (const gdb_byte *, struct type *, |
9519ccd5 | 68 | struct ui_file *, char *); |
c906108c | 69 | |
a2bd3dcd | 70 | extern void cp_print_value_fields (struct type *, struct type *, |
fc1a4b47 | 71 | const gdb_byte *, int, CORE_ADDR, |
a2bd3dcd | 72 | struct ui_file *, int, |
79a45b7d | 73 | const struct value_print_options *, |
d9fcf2fb | 74 | struct type **, int); |
c906108c | 75 | |
a14ed312 | 76 | extern int cp_is_vtbl_ptr_type (struct type *); |
c906108c | 77 | |
a14ed312 | 78 | extern int cp_is_vtbl_member (struct type *); |
c906108c SS |
79 | |
80 | ||
c5aa993b | 81 | #endif /* !defined (C_LANG_H) */ |