]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/ldbuildid.h
Simplify readelf's RELR relocation display.
[thirdparty/binutils-gdb.git] / ld / ldbuildid.h
CommitLineData
61e2488c 1/* ldbuildid.h -
fd67aa11 2 Copyright (C) 2013-2024 Free Software Foundation, Inc.
61e2488c
JT
3
4 This file is part of the 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 LDBUILDID_H
22#define LDBUILDID_H
23
f38a2680 24extern bool
61e2488c
JT
25validate_build_id_style (const char *);
26
27extern bfd_size_type
28compute_build_id_size (const char *);
29
30typedef void (*sum_fn) (const void *, size_t, void *);
31
f38a2680
AM
32typedef bool (*checksum_fn) (bfd *,
33 void (*) (const void *, size_t, void *),
34 void *);
61e2488c 35
f38a2680 36extern bool
61e2488c
JT
37generate_build_id (bfd *, const char *, checksum_fn, unsigned char *, int);
38
39#endif /* LDBUILDID_H */