1 /* C language support definitions for GDB, the GNU debugger.
3 Copyright (C) 1992, 1994, 1995, 1996, 1997, 1998, 2000, 2002, 2005 Free
4 Software Foundation, Inc.
6 This file is part of GDB.
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
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
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.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
24 #if !defined (C_LANG_H)
28 struct language_arch_info
;
34 extern int c_parse (void); /* Defined in c-exp.y */
36 extern void c_error (char *); /* Defined in c-exp.y */
38 /* Defined in c-typeprint.c */
39 extern void c_print_type (struct type
*, char *, struct ui_file
*, int,
42 extern int c_val_print (struct type
*, const gdb_byte
*, int, CORE_ADDR
,
43 struct ui_file
*, int, int, int,
44 enum val_prettyprint
);
46 extern int c_value_print (struct value
*, struct ui_file
*, int,
47 enum val_prettyprint
);
49 /* These are in c-lang.c: */
51 extern void c_printchar (int, struct ui_file
*);
53 extern void c_printstr (struct ui_file
* stream
, const gdb_byte
*string
,
54 unsigned int length
, int width
,
57 extern void scan_macro_expansion (char *expansion
);
58 extern int scanning_macro_expansion (void);
59 extern void finished_macro_expansion (void);
61 extern macro_lookup_ftype
*expression_macro_lookup_func
;
62 extern void *expression_macro_lookup_baton
;
64 extern struct type
*c_create_fundamental_type (struct objfile
*, int);
66 extern void c_language_arch_info (struct gdbarch
*gdbarch
,
67 struct language_arch_info
*lai
);
69 /* These are in c-typeprint.c: */
71 extern void c_type_print_base (struct type
*, struct ui_file
*, int, int);
73 /* These are in cp-valprint.c */
75 extern int vtblprint
; /* Controls printing of vtbl's */
77 extern int static_field_print
;
79 extern void cp_print_class_member (const gdb_byte
*, struct type
*,
80 struct ui_file
*, char *);
82 extern void cp_print_class_method (const gdb_byte
*, struct type
*,
85 extern void cp_print_value_fields (struct type
*, struct type
*,
86 const gdb_byte
*, int, CORE_ADDR
,
87 struct ui_file
*, int,
88 int, enum val_prettyprint
,
91 extern int cp_is_vtbl_ptr_type (struct type
*);
93 extern int cp_is_vtbl_member (struct type
*);
96 #endif /* !defined (C_LANG_H) */