Commit | Line | Data |
---|---|---|
252b5132 | 1 | /* bucomm.h -- binutils common include file. |
250d07de | 2 | Copyright (C) 1991-2021 Free Software Foundation, Inc. |
252b5132 | 3 | |
06d86cf7 | 4 | This file is part of GNU Binutils. |
252b5132 | 5 | |
06d86cf7 NC |
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 | |
32866df7 | 8 | the Free Software Foundation; either version 3 of the License, or |
06d86cf7 | 9 | (at your option) any later version. |
252b5132 | 10 | |
06d86cf7 NC |
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. | |
252b5132 | 15 | |
06d86cf7 NC |
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 | |
32866df7 NC |
18 | Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, |
19 | MA 02110-1301, USA. */ | |
252b5132 RH |
20 | \f |
21 | #ifndef _BUCOMM_H | |
22 | #define _BUCOMM_H | |
23 | ||
dd9b91de NC |
24 | /* In bucomm.c. */ |
25 | ||
77f762d6 | 26 | /* Return the filename in a static buffer. */ |
8d8e0703 | 27 | const char *bfd_get_archive_filename (const bfd *); |
77f762d6 | 28 | |
2da42df6 | 29 | void bfd_nonfatal (const char *); |
37cc8ec1 | 30 | |
2db6cde7 NS |
31 | void bfd_nonfatal_message (const char *, const bfd *, const asection *, |
32 | const char *, ...); | |
33 | ||
2da42df6 | 34 | void bfd_fatal (const char *) ATTRIBUTE_NORETURN; |
252b5132 | 35 | |
0fd3a477 | 36 | void report (const char *, va_list) ATTRIBUTE_PRINTF(1,0); |
cba12006 | 37 | |
2da42df6 | 38 | void fatal (const char *, ...) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN; |
252b5132 | 39 | |
2da42df6 | 40 | void non_fatal (const char *, ...) ATTRIBUTE_PRINTF_1; |
252b5132 | 41 | |
2da42df6 | 42 | void set_default_bfd_target (void); |
252b5132 | 43 | |
2da42df6 | 44 | void list_matching_formats (char **); |
252b5132 | 45 | |
2da42df6 | 46 | void list_supported_targets (const char *, FILE *); |
252b5132 | 47 | |
2da42df6 | 48 | void list_supported_architectures (const char *, FILE *); |
2f83960e | 49 | |
2da42df6 | 50 | int display_info (void); |
252b5132 | 51 | |
015dc7e1 | 52 | void print_arelt_descr (FILE *, bfd *, bool, bool); |
252b5132 | 53 | |
365f5fb6 | 54 | char *make_tempname (const char *, int *); |
1ff5d5c4 | 55 | char *make_tempdir (const char *); |
2da42df6 AJ |
56 | |
57 | bfd_vma parse_vma (const char *, const char *); | |
252b5132 | 58 | |
f24ddbdd NC |
59 | off_t get_file_size (const char *); |
60 | ||
015dc7e1 | 61 | bool is_valid_archive_path (char const *); |
dd9b91de | 62 | |
252b5132 RH |
63 | extern char *program_name; |
64 | ||
dd9b91de | 65 | /* In filemode.c. */ |
2da42df6 | 66 | void mode_string (unsigned long, char *); |
252b5132 | 67 | |
dd9b91de | 68 | /* In version.c. */ |
2da42df6 | 69 | extern void print_version (const char *); |
252b5132 | 70 | |
dd9b91de | 71 | /* In rename.c. */ |
2da42df6 | 72 | extern void set_times (const char *, const struct stat *); |
252b5132 | 73 | |
c42c71a1 | 74 | extern int smart_rename (const char *, const char *, int, |
015dc7e1 | 75 | struct stat *, bool); |
014cc7f8 | 76 | |
252b5132 | 77 | |
dd9b91de | 78 | /* In libiberty. */ |
2da42df6 | 79 | void *xmalloc (size_t); |
252b5132 | 80 | |
2da42df6 | 81 | void *xrealloc (void *, size_t); |
252b5132 | 82 | |
fc5e0925 AM |
83 | #if __GNUC__ >= 7 |
84 | #define _mul_overflow(a, b, res) __builtin_mul_overflow (a, b, res) | |
85 | #else | |
86 | /* Assumes unsigned values. Careful! Args evaluated multiple times. */ | |
87 | #define _mul_overflow(a, b, res) \ | |
88 | ((*res) = (a), (*res) *= (b), (b) != 0 && (*res) / (b) != (a)) | |
89 | #endif | |
90 | ||
252b5132 | 91 | #endif /* _BUCOMM_H */ |