[gdb/testsuite] Add gdb.tui/wrap-line.exp
[binutils-gdb.git] / ld / ldbuildid.h
blob9deb23e0902a987de051585be95981a52a8f6d41
1 /* ldbuildid.h -
2 Copyright (C) 2013-2023 Free Software Foundation, Inc.
4 This file is part of the GNU Binutils.
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.
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.
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. */
21 #ifndef LDBUILDID_H
22 #define LDBUILDID_H
24 extern bool
25 validate_build_id_style (const char *);
27 extern bfd_size_type
28 compute_build_id_size (const char *);
30 typedef void (*sum_fn) (const void *, size_t, void *);
32 typedef bool (*checksum_fn) (bfd *,
33 void (*) (const void *, size_t, void *),
34 void *);
36 extern bool
37 generate_build_id (bfd *, const char *, checksum_fn, unsigned char *, int);
39 #endif /* LDBUILDID_H */