]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - binutils/bucomm.h
Update copyright years
[thirdparty/binutils-gdb.git] / binutils / bucomm.h
1 /* bucomm.h -- binutils common include file.
2 Copyright (C) 1991-2014 Free Software Foundation, Inc.
3
4 This file is part of GNU Binutils.
5
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 3 of the License, or
9 (at your option) any later version.
10
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.
15
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., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
20 \f
21 #ifndef _BUCOMM_H
22 #define _BUCOMM_H
23
24 /* Return the filename in a static buffer. */
25 const char *bfd_get_archive_filename (const bfd *);
26
27 void bfd_nonfatal (const char *);
28
29 void bfd_nonfatal_message (const char *, const bfd *, const asection *,
30 const char *, ...);
31
32 void bfd_fatal (const char *) ATTRIBUTE_NORETURN;
33
34 void report (const char *, va_list) ATTRIBUTE_PRINTF(1,0);
35
36 void fatal (const char *, ...) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN;
37
38 void non_fatal (const char *, ...) ATTRIBUTE_PRINTF_1;
39
40 void set_default_bfd_target (void);
41
42 void list_matching_formats (char **);
43
44 void list_supported_targets (const char *, FILE *);
45
46 void list_supported_architectures (const char *, FILE *);
47
48 int display_info (void);
49
50 void print_arelt_descr (FILE *, bfd *, bfd_boolean);
51
52 char *make_tempname (char *);
53 char *make_tempdir (char *);
54
55 bfd_vma parse_vma (const char *, const char *);
56
57 off_t get_file_size (const char *);
58
59 extern char *program_name;
60
61 /* filemode.c */
62 void mode_string (unsigned long, char *);
63
64 /* version.c */
65 extern void print_version (const char *);
66
67 /* rename.c */
68 extern void set_times (const char *, const struct stat *);
69
70 extern int smart_rename (const char *, const char *, int);
71
72 /* libiberty. */
73 void *xmalloc (size_t);
74
75 void *xrealloc (void *, size_t);
76
77 #endif /* _BUCOMM_H */