2000-02-07 Jason Molenda (jsm@bugshack.cygnus.com)
[deliverable/binutils-gdb.git] / gdb / valprint.h
CommitLineData
c906108c 1/* Declarations for value printing routines for GDB, the GNU debugger.
d9fcf2fb 2 Copyright 1986, 1988, 1989, 1991-1994, 2000 Free Software Foundation, Inc.
c906108c 3
c5aa993b 4 This file is part of GDB.
c906108c 5
c5aa993b
JM
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
c906108c 10
c5aa993b
JM
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
c906108c 15
c5aa993b
JM
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
c906108c
SS
20
21
22extern int prettyprint_arrays; /* Controls pretty printing of arrays. */
23extern int prettyprint_structs; /* Controls pretty printing of structures */
24extern int prettyprint_arrays; /* Controls pretty printing of arrays. */
25
26extern int vtblprint; /* Controls printing of vtbl's */
27extern int unionprint; /* Controls printing of nested unions. */
28extern int addressprint; /* Controls pretty printing of addresses. */
29extern int objectprint; /* Controls looking up an object's derived type
30 using what we find in its vtables. */
31
32extern unsigned int print_max; /* Max # of chars for strings/vectors */
33
34extern int output_format;
35
c5aa993b 36extern int stop_print_at_null; /* Stop printing at null char? */
c906108c 37
d9fcf2fb
JM
38extern void val_print_array_elements (struct type *, char *, CORE_ADDR,
39 struct ui_file *, int, int, int,
40 enum val_prettyprint, unsigned int);
c906108c 41
d9fcf2fb
JM
42extern void val_print_type_code_int (struct type *, char *,
43 struct ui_file *);
c906108c 44
d9fcf2fb
JM
45extern void print_binary_chars (struct ui_file *, unsigned char *,
46 unsigned int);
c5aa993b 47
d9fcf2fb
JM
48extern void print_octal_chars (struct ui_file *, unsigned char *,
49 unsigned int);
c5aa993b 50
d9fcf2fb
JM
51extern void print_decimal_chars (struct ui_file *, unsigned char *,
52 unsigned int);
This page took 0.040823 seconds and 4 git commands to generate.