Commit | Line | Data |
---|---|---|
61e2488c | 1 | /* ldbuildid.h - |
6f2750fe | 2 | Copyright (C) 2013-2016 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 | ||
24 | extern bfd_boolean | |
25 | validate_build_id_style (const char *); | |
26 | ||
27 | extern bfd_size_type | |
28 | compute_build_id_size (const char *); | |
29 | ||
30 | typedef void (*sum_fn) (const void *, size_t, void *); | |
31 | ||
32 | typedef bfd_boolean (*checksum_fn) (bfd *, | |
33 | void (*) (const void *, size_t, void *), | |
34 | void *); | |
35 | ||
36 | extern bfd_boolean | |
37 | generate_build_id (bfd *, const char *, checksum_fn, unsigned char *, int); | |
38 | ||
39 | #endif /* LDBUILDID_H */ |