* ieee.c (ieee_slurp_debug): New static function.
[deliverable/binutils-gdb.git] / binutils / budbg.h
CommitLineData
e1c14599
ILT
1/* budbg.c -- Interfaces to the generic debugging information routines.
2 Copyright (C) 1995 Free Software Foundation, Inc.
3 Written by Ian Lance Taylor <ian@cygnus.com>.
4
5 This file is part of GNU Binutils.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
21
22#ifndef BUDBG_H
23#define BUDBG_H
24
25#include <stdio.h>
26
27/* Routine used to read generic debugging information. */
28
29extern PTR read_debugging_info PARAMS ((bfd *));
30
31/* Routine used to print generic debugging information. */
32
33extern boolean print_debugging_info PARAMS ((FILE *, PTR));
34
35/* Routines used to read stabs information. */
36
37extern PTR start_stab PARAMS ((PTR));
38
39extern boolean finish_stab PARAMS ((PTR, PTR));
40
41extern boolean parse_stab PARAMS ((PTR, PTR, int, int, bfd_vma, const char *));
42
43#endif
This page took 0.025054 seconds and 4 git commands to generate.