]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/c-lang.h
* gdb.ada/packed_array/pa.adb: New file.
[thirdparty/binutils-gdb.git] / gdb / c-lang.h
CommitLineData
c906108c 1/* C language support definitions for GDB, the GNU debugger.
9519ccd5
AC
2
3 Copyright 1992, 1994, 1995, 1996, 1997, 1998, 2000, 2002, 2005 Free
4 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
10 the Free Software Foundation; either version 2 of the License, or
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
JM
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., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
c906108c
SS
22
23
24#if !defined (C_LANG_H)
25#define C_LANG_H 1
26
da3331ec 27struct ui_file;
e9667a65 28struct language_arch_info;
da3331ec 29
c906108c 30#include "value.h"
84f0252a 31#include "macroexp.h"
c906108c
SS
32
33
a14ed312 34extern int c_parse (void); /* Defined in c-exp.y */
c906108c 35
a14ed312 36extern void c_error (char *); /* Defined in c-exp.y */
c906108c 37
d9fcf2fb
JM
38/* Defined in c-typeprint.c */
39extern void c_print_type (struct type *, char *, struct ui_file *, int,
40 int);
c906108c 41
a2bd3dcd 42extern int c_val_print (struct type *, const bfd_byte *, int, CORE_ADDR,
d9fcf2fb
JM
43 struct ui_file *, int, int, int,
44 enum val_prettyprint);
c906108c 45
d9fcf2fb
JM
46extern int c_value_print (struct value *, struct ui_file *, int,
47 enum val_prettyprint);
c906108c
SS
48
49/* These are in c-lang.c: */
50
d9fcf2fb 51extern void c_printchar (int, struct ui_file *);
c906108c 52
ce27fb25 53extern void c_printstr (struct ui_file * stream, const bfd_byte *string,
d9fcf2fb
JM
54 unsigned int length, int width,
55 int force_ellipses);
c906108c 56
84f0252a
JB
57extern void scan_macro_expansion (char *expansion);
58extern int scanning_macro_expansion (void);
59extern void finished_macro_expansion (void);
60
61extern macro_lookup_ftype *expression_macro_lookup_func;
62extern void *expression_macro_lookup_baton;
63
a14ed312 64extern struct type *c_create_fundamental_type (struct objfile *, int);
c906108c 65
e9667a65
AC
66extern void c_language_arch_info (struct gdbarch *gdbarch,
67 struct language_arch_info *lai);
c906108c
SS
68
69/* These are in c-typeprint.c: */
70
d9fcf2fb 71extern void c_type_print_base (struct type *, struct ui_file *, int, int);
c906108c 72
c906108c
SS
73/* These are in cp-valprint.c */
74
75extern int vtblprint; /* Controls printing of vtbl's */
76
77extern int static_field_print;
78
9519ccd5
AC
79extern void cp_print_class_member (const bfd_byte *, struct type *,
80 struct ui_file *, char *);
c906108c 81
9519ccd5
AC
82extern void cp_print_class_method (const bfd_byte *, struct type *,
83 struct ui_file *);
c906108c 84
a2bd3dcd
AC
85extern void cp_print_value_fields (struct type *, struct type *,
86 const bfd_byte *, int, CORE_ADDR,
87 struct ui_file *, int,
d9fcf2fb
JM
88 int, enum val_prettyprint,
89 struct type **, int);
c906108c 90
a14ed312 91extern int cp_is_vtbl_ptr_type (struct type *);
c906108c 92
a14ed312 93extern int cp_is_vtbl_member (struct type *);
c906108c
SS
94
95
c5aa993b 96#endif /* !defined (C_LANG_H) */