Subversion Repositories Kolibri OS

Rev

Rev 5217 | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. /* bucomm.h -- binutils common include file.
  2.    Copyright (C) 1991-2015 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. #ifndef _BUCOMM_H
  21. #define _BUCOMM_H
  22.  
  23. /* In bucomm.c.  */
  24.  
  25. /* Return the filename in a static buffer.  */
  26. const char *bfd_get_archive_filename (const bfd *);
  27.  
  28. void bfd_nonfatal (const char *);
  29.  
  30. void bfd_nonfatal_message (const char *, const bfd *, const asection *,
  31.                            const char *, ...);
  32.  
  33. void bfd_fatal (const char *) ATTRIBUTE_NORETURN;
  34.  
  35. void report (const char *, va_list) ATTRIBUTE_PRINTF(1,0);
  36.  
  37. void fatal (const char *, ...) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN;
  38.  
  39. void non_fatal (const char *, ...) ATTRIBUTE_PRINTF_1;
  40.  
  41. void set_default_bfd_target (void);
  42.  
  43. void list_matching_formats (char **);
  44.  
  45. void list_supported_targets (const char *, FILE *);
  46.  
  47. void list_supported_architectures (const char *, FILE *);
  48.  
  49. int display_info (void);
  50.  
  51. void print_arelt_descr (FILE *, bfd *, bfd_boolean);
  52.  
  53. char *make_tempname (char *);
  54. char *make_tempdir (char *);
  55.  
  56. bfd_vma parse_vma (const char *, const char *);
  57.  
  58. off_t get_file_size (const char *);
  59.  
  60. bfd_boolean is_valid_archive_path (char const *);
  61.  
  62. extern char *program_name;
  63.  
  64. /* In filemode.c.  */
  65. void mode_string (unsigned long, char *);
  66.  
  67. /* In version.c.  */
  68. extern void print_version (const char *);
  69.  
  70. /* In rename.c.  */
  71. extern void set_times (const char *, const struct stat *);
  72.  
  73. extern int smart_rename (const char *, const char *, int);
  74.  
  75. /* In libiberty.  */
  76. void *xmalloc (size_t);
  77.  
  78. void *xrealloc (void *, size_t);
  79.  
  80. #endif /* _BUCOMM_H */
  81.