blob: 18bb99c4a0ef87abd4f7ab41f94bb79ca2c26245 [file] [log] [blame]
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00001/* Interface for libebl_arm module.
2 Copyright (C) 2002, 2005 Red Hat, Inc.
3
4 This program is Open Source software; you can redistribute it and/or
5 modify it under the terms of the Open Software License version 1.0 as
6 published by the Open Source Initiative.
7
8 You should have received a copy of the Open Software License along
9 with this program; if not, you may obtain a copy of the Open Software
10 License version 1.0 from http://www.opensource.org/licenses/osl.php or
11 by writing the Open Source Initiative c/o Lawrence Rosen, Esq.,
12 3001 King Ranch Road, Ukiah, CA 95482. */
13
14#ifndef _LIBEBL_ARM_H
15#define _LIBEBL_ARM_H 1
16
17#include <libeblP.h>
18
19
20/* Constructor. */
21extern const char *arm_init (Elf *elf, GElf_Half machine, Ebl *eh,
22 size_t ehlen);
23
24/* Destructor. */
25extern void arm_destr (Ebl *bh);
26
27
28/* Function to get relocation type name. */
29extern const char *arm_reloc_type_name (int type, char *buf, size_t len);
30
31/* Check relocation type. */
32extern bool arm_reloc_type_check (int type);
33
34/* Check whether given relocation is a copy relocation. */
35extern bool arm_copy_reloc_p (int reloc);
36
37#endif /* libebl_arm.h */