1/* ldbuildid.h -
2   Copyright (C) 2013-2017 Free Software Foundation, Inc.
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
24extern bfd_boolean
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
32typedef bfd_boolean (*checksum_fn) (bfd *,
33				    void (*) (const void *, size_t, void *),
34				    void *);
35
36extern bfd_boolean
37generate_build_id (bfd *, const char *, checksum_fn, unsigned char *, int);
38
39#endif /* LDBUILDID_H */
40