strings: Improve code to detect excessively large minimum string lengths.
[binutils-gdb.git] / binutils / budbg.h
index b8a5713e37a36121e5b8cb325cbb579f4536c5e0..697b4439099bfefcafaa0f1dcb6e51ee82495437 100644 (file)
@@ -1,5 +1,5 @@
 /* budbg.c -- Interfaces to the generic debugging information routines.
-   Copyright (C) 1995-2020 Free Software Foundation, Inc.
+   Copyright (C) 1995-2023 Free Software Foundation, Inc.
    Written by Ian Lance Taylor <ian@cygnus.com>.
 
    This file is part of GNU Binutils.
 
 /* Routine used to read generic debugging information.  */
 
-extern void *read_debugging_info (bfd *, asymbol **, long, bfd_boolean);
+extern void *read_debugging_info (bfd *, asymbol **, long, bool);
 
 /* Routine used to print generic debugging information.  */
 
-extern bfd_boolean print_debugging_info
+extern bool print_debugging_info
   (FILE *, void *, bfd *, asymbol **,
-   char * (*) (struct bfd *, const char *, int), bfd_boolean);
+   char * (*) (struct bfd *, const char *, int), bool);
 
 /* Routines used to read and write stabs information.  */
 
-extern void *start_stab (void *, bfd *, bfd_boolean, asymbol **, long);
+extern void *start_stab (void *, bfd *, bool, asymbol **, long);
 
-extern bfd_boolean finish_stab (void *, void *);
+extern bool finish_stab (void *, void *, bool);
 
-extern bfd_boolean parse_stab
+extern bool parse_stab
   (void *, void *, int, int, bfd_vma, const char *);
 
-extern bfd_boolean write_stabs_in_sections_debugging_info
+extern bool write_stabs_in_sections_debugging_info
   (bfd *, void *, bfd_byte **, bfd_size_type *, bfd_byte **, bfd_size_type *);
 
 /* Routine used to read COFF debugging information.  */
 
-extern bfd_boolean parse_coff (bfd *, asymbol **, long, void *);
+extern bool parse_coff (bfd *, asymbol **, long, void *);
 
 #endif