Home | History | Annotate | Line # | Download | only in binutils
      1 /* bucomm.h -- binutils common include file.
      2    Copyright (C) 1991-2025 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 
     21 #ifndef _BUCOMM_H
     23 #define _BUCOMM_H
     24 
     25 /* In bucomm.c.  */
     26 
     27 /* Return the filename in a static buffer.  */
     28 const char *bfd_get_archive_filename (const bfd *);
     29 
     30 void bfd_nonfatal (const char *);
     31 
     32 void bfd_nonfatal_message (const char *, const bfd *, const asection *,
     33 			   const char *, ...);
     34 
     35 void bfd_fatal (const char *) ATTRIBUTE_NORETURN;
     36 
     37 void report (const char *, va_list) ATTRIBUTE_PRINTF(1,0);
     38 
     39 void fatal (const char *, ...) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN;
     40 
     41 void non_fatal (const char *, ...) ATTRIBUTE_PRINTF_1;
     42 
     43 void *bfd_xalloc (bfd *, size_t);
     44 
     45 void set_default_bfd_target (void);
     46 
     47 void list_matching_formats (char **);
     48 
     49 void list_supported_targets (const char *, FILE *);
     50 
     51 void list_supported_architectures (const char *, FILE *);
     52 
     53 int display_info (void);
     54 
     55 void print_arelt_descr (FILE *, bfd *, bool, bool);
     56 
     57 char *make_tempname (const char *, int *);
     58 char *make_tempdir (const char *);
     59 
     60 bfd_vma parse_vma (const char *, const char *);
     61 
     62 off_t get_file_size (const char *);
     63 
     64 bool is_valid_archive_path (char const *);
     65 
     66 extern char *program_name;
     67 
     68 /* In filemode.c.  */
     69 void mode_string (unsigned long, char *);
     70 
     71 /* In version.c.  */
     72 extern void print_version (const char *);
     73 
     74 /* In rename.c.  */
     75 extern void set_times (const char *, const struct stat *);
     76 
     77 extern int smart_rename (const char *, const char *, int,
     78 			 struct stat *, bool);
     79 
     80 #if __GNUC__ >= 7
     81 #define _mul_overflow(a, b, res) __builtin_mul_overflow (a, b, res)
     82 #else
     83 /* Assumes unsigned values.  Careful!  Args evaluated multiple times.  */
     84 #define _mul_overflow(a, b, res) \
     85   ((*res) = (a), (*res) *= (b), (b) != 0 && (*res) / (b) != (a))
     86 #endif
     87 
     88 #endif /* _BUCOMM_H */
     89