Automatic date update in version.in
[deliverable/binutils-gdb.git] / bfd / bfd-in.h
CommitLineData
252b5132 1/* Main header file for the bfd library -- portable access to object files.
c2852e88 2
250d07de 3 Copyright (C) 1990-2021 Free Software Foundation, Inc.
c2852e88 4
252b5132
RH
5 Contributed by Cygnus Support.
6
8afb0e02 7 This file is part of BFD, the Binary File Descriptor library.
252b5132 8
8afb0e02
NC
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
cd123cb7 11 the Free Software Foundation; either version 3 of the License, or
8afb0e02 12 (at your option) any later version.
252b5132 13
8afb0e02
NC
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
252b5132 18
8afb0e02
NC
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
3e110533 21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
252b5132 22
252b5132
RH
23#ifndef __BFD_H_SEEN__
24#define __BFD_H_SEEN__
25
0bee45d9
NC
26/* PR 14072: Ensure that config.h is included first. */
27#if !defined PACKAGE && !defined PACKAGE_VERSION
df7b86aa
NC
28#error config.h must be included before this header
29#endif
30
252b5132
RH
31#ifdef __cplusplus
32extern "C" {
33#endif
34
35#include "ansidecl.h"
e43d48cc 36#include "symcat.h"
3dfb1b6d 37#include <stdint.h>
ad9e24ad 38#include <stdbool.h>
95da9854 39#include "diagnostics.h"
52d45da3 40#include <stdarg.h>
57ae980e 41#include <string.h>
f1163205
NC
42#include <sys/stat.h>
43
e43d48cc
AM
44#if defined (__STDC__) || defined (ALMOST_STDC) || defined (HAVE_STRINGIZE)
45#ifndef SABER
46/* This hack is to avoid a problem with some strict ANSI C preprocessors.
47 The problem is, "32_" is not a valid preprocessing token, and we don't
48 want extra underscores (e.g., "nlm_32_"). The XCONCAT2 macro will
49 cause the inner CONCAT2 macros to be evaluated first, producing
50 still-valid pp-tokens. Then the final concatenation can be done. */
51#undef CONCAT4
52#define CONCAT4(a,b,c,d) XCONCAT2(CONCAT2(a,b),CONCAT2(c,d))
53#endif
54#endif
252b5132 55
0112cd26
NC
56/* This is a utility macro to handle the situation where the code
57 wants to place a constant string into the code, followed by a
58 comma and then the length of the string. Doing this by hand
db86b2dc
PA
59 is error prone, so using this macro is safer. */
60#define STRING_COMMA_LEN(STR) (STR), (sizeof (STR) - 1)
08dedd66 61
ce3c775b
NC
62#define BFD_SUPPORTS_PLUGINS @supports_plugins@
63
69263e90
AM
64/* The word size used by BFD on the host. This may be 64 with a 32
65 bit target if the host is 64 bit, or if other 64 bit targets have
66 been selected with --enable-targets, or if --enable-64-bit-bfd. */
252b5132 67#define BFD_ARCH_SIZE @wordsize@
69263e90
AM
68
69/* The word size of the default bfd target. */
70#define BFD_DEFAULT_TARGET_SIZE @bfd_default_target_size@
71
252b5132 72#define BFD_HOST_64BIT_LONG @BFD_HOST_64BIT_LONG@
d2df793a 73#define BFD_HOST_64BIT_LONG_LONG @BFD_HOST_64BIT_LONG_LONG@
252b5132
RH
74#if @BFD_HOST_64_BIT_DEFINED@
75#define BFD_HOST_64_BIT @BFD_HOST_64_BIT@
76#define BFD_HOST_U_64_BIT @BFD_HOST_U_64_BIT@
8ce8c090
AM
77typedef BFD_HOST_64_BIT bfd_int64_t;
78typedef BFD_HOST_U_64_BIT bfd_uint64_t;
252b5132
RH
79#endif
80
83c79df8 81#include <inttypes.h>
2dcf00ce 82
252b5132
RH
83#if BFD_ARCH_SIZE >= 64
84#define BFD64
85#endif
86
87#ifndef INLINE
88#if __GNUC__ >= 2
89#define INLINE __inline__
90#else
91#define INLINE
92#endif
93#endif
94
d2df793a 95/* Declaring a type wide enough to hold a host long and a host pointer. */
07d6d2b8 96#define BFD_HOSTPTR_T @BFD_HOSTPTR_T@
d2df793a
NC
97typedef BFD_HOSTPTR_T bfd_hostptr_t;
98
b5f79c76 99/* Forward declaration. */
c2852e88 100typedef struct bfd bfd;
252b5132 101
ad9e24ad 102/* Boolean type used in bfd.
cf3d882d 103 General rule: Functions which are bfd_boolean return TRUE on
b34976b6
AM
104 success and FALSE on failure (unless they're a predicate). */
105
ad9e24ad 106#ifdef POISON_BFD_BOOLEAN
65c5fbd4 107# pragma GCC poison bfd_boolean
ad9e24ad
AM
108#else
109# define bfd_boolean bool
110# undef FALSE
111# undef TRUE
112# define FALSE 0
113# define TRUE 1
114#endif
b34976b6 115
252b5132
RH
116#ifdef BFD64
117
118#ifndef BFD_HOST_64_BIT
119 #error No 64 bit integer type available
120#endif /* ! defined (BFD_HOST_64_BIT) */
121
122typedef BFD_HOST_U_64_BIT bfd_vma;
123typedef BFD_HOST_64_BIT bfd_signed_vma;
124typedef BFD_HOST_U_64_BIT bfd_size_type;
125typedef BFD_HOST_U_64_BIT symvalue;
126
252b5132 127#if BFD_HOST_64BIT_LONG
14a91970
AM
128#define BFD_VMA_FMT "l"
129#elif defined (__MSVCRT__)
130#define BFD_VMA_FMT "I64"
6e3d6dc1 131#else
14a91970 132#define BFD_VMA_FMT "ll"
252b5132 133#endif
14a91970
AM
134
135#ifndef fprintf_vma
136#define sprintf_vma(s,x) sprintf (s, "%016" BFD_VMA_FMT "x", x)
137#define fprintf_vma(f,x) fprintf (f, "%016" BFD_VMA_FMT "x", x)
252b5132
RH
138#endif
139
140#else /* not BFD64 */
141
142/* Represent a target address. Also used as a generic unsigned type
143 which is guaranteed to be big enough to hold any arithmetic types
144 we need to deal with. */
145typedef unsigned long bfd_vma;
146
147/* A generic signed type which is guaranteed to be big enough to hold any
148 arithmetic types we need to deal with. Can be assumed to be compatible
149 with bfd_vma in the same way that signed and unsigned ints are compatible
150 (as parameters, in assignment, etc). */
151typedef long bfd_signed_vma;
152
153typedef unsigned long symvalue;
154typedef unsigned long bfd_size_type;
155
156/* Print a bfd_vma x on stream s. */
14a91970
AM
157#define BFD_VMA_FMT "l"
158#define fprintf_vma(s,x) fprintf (s, "%08" BFD_VMA_FMT "x", x)
159#define sprintf_vma(s,x) sprintf (s, "%08" BFD_VMA_FMT "x", x)
252b5132
RH
160
161#endif /* not BFD64 */
162
d0fb9a8d
JJ
163#define HALF_BFD_SIZE_TYPE \
164 (((bfd_size_type) 1) << (8 * sizeof (bfd_size_type) / 2))
165
8ce8c090
AM
166#ifndef BFD_HOST_64_BIT
167/* Fall back on a 32 bit type. The idea is to make these types always
168 available for function return types, but in the case that
169 BFD_HOST_64_BIT is undefined such a function should abort or
170 otherwise signal an error. */
171typedef bfd_signed_vma bfd_int64_t;
172typedef bfd_vma bfd_uint64_t;
173#endif
174
d7ce59e3
AC
175/* An offset into a file. BFD always uses the largest possible offset
176 based on the build time availability of fseek, fseeko, or fseeko64. */
177typedef @bfd_file_ptr@ file_ptr;
178typedef unsigned @bfd_file_ptr@ ufile_ptr;
dc810e39 179
c58b9523
AM
180extern void bfd_sprintf_vma (bfd *, char *, bfd_vma);
181extern void bfd_fprintf_vma (bfd *, void *, bfd_vma);
ae4221d7 182
252b5132 183#define printf_vma(x) fprintf_vma(stdout,x)
ae4221d7 184#define bfd_printf_vma(abfd,x) bfd_fprintf_vma (abfd,stdout,x)
252b5132
RH
185
186typedef unsigned int flagword; /* 32 bits of flags */
187typedef unsigned char bfd_byte;
188\f
b5f79c76 189/* File formats. */
252b5132 190
b5f79c76
NC
191typedef enum bfd_format
192{
193 bfd_unknown = 0, /* File format is unknown. */
5c4491d3 194 bfd_object, /* Linker/assembler/compiler output. */
b5f79c76
NC
195 bfd_archive, /* Object archive file. */
196 bfd_core, /* Core dump. */
197 bfd_type_end /* Marks the end; don't use it! */
198}
199bfd_format;
252b5132 200\f
b5f79c76 201/* Symbols and relocation. */
252b5132
RH
202
203/* A count of carsyms (canonical archive symbols). */
204typedef unsigned long symindex;
205
252b5132
RH
206#define BFD_NO_MORE_SYMBOLS ((symindex) ~0)
207
252b5132 208/* A canonical archive symbol. */
b5f79c76
NC
209/* This is a type pun with struct ranlib on purpose! */
210typedef struct carsym
211{
1d38e9d1 212 const char *name;
b5f79c76
NC
213 file_ptr file_offset; /* Look here to find the file. */
214}
215carsym; /* To make these you call a carsymogen. */
252b5132 216
252b5132 217/* Used in generating armaps (archive tables of contents).
b5f79c76 218 Perhaps just a forward definition would do? */
07d6d2b8 219struct orl /* Output ranlib. */
b5f79c76
NC
220{
221 char **name; /* Symbol name. */
222 union
223 {
dc810e39
AM
224 file_ptr pos;
225 bfd *abfd;
b5f79c76
NC
226 } u; /* bfd* or file position. */
227 int namidx; /* Index into string table. */
252b5132 228};
76e7a751 229
b5f79c76
NC
230/* Linenumber stuff. */
231typedef struct lineno_cache_entry
232{
233 unsigned int line_number; /* Linenumber from start of function. */
234 union
235 {
fc0a2244 236 struct bfd_symbol *sym; /* Function name. */
07d6d2b8 237 bfd_vma offset; /* Offset into section. */
252b5132 238 } u;
b5f79c76
NC
239}
240alent;
252b5132 241\f
b5f79c76 242/* Object and core file sections. */
76e7a751 243typedef struct bfd_section *sec_ptr;
252b5132
RH
244
245#define align_power(addr, align) \
29f628db 246 (((addr) + ((bfd_vma) 1 << (align)) - 1) & (-((bfd_vma) 1 << (align))))
252b5132 247
76e7a751
AM
248/* Align an address upward to a boundary, expressed as a number of bytes.
249 E.g. align to an 8-byte boundary with argument of 8. Take care never
250 to wrap around if the address is within boundary-1 of the end of the
251 address space. */
252#define BFD_ALIGN(this, boundary) \
253 ((((bfd_vma) (this) + (boundary) - 1) >= (bfd_vma) (this)) \
254 ? (((bfd_vma) (this) + ((boundary) - 1)) & ~ (bfd_vma) ((boundary)-1)) \
255 : ~ (bfd_vma) 0)
252b5132
RH
256\f
257typedef enum bfd_print_symbol
60bcf0fa 258{
252b5132
RH
259 bfd_print_symbol_name,
260 bfd_print_symbol_more,
261 bfd_print_symbol_all
262} bfd_print_symbol_type;
60bcf0fa 263
252b5132
RH
264/* Information about a symbol that nm needs. */
265
266typedef struct _symbol_info
267{
268 symvalue value;
269 char type;
07d6d2b8
AM
270 const char *name; /* Symbol name. */
271 unsigned char stab_type; /* Stab type. */
272 char stab_other; /* Stab other. */
273 short stab_desc; /* Stab desc. */
274 const char *stab_name; /* String for stab type. */
252b5132
RH
275} symbol_info;
276
277/* Get the name of a stabs type code. */
278
c58b9523 279extern const char *bfd_get_stab_name (int);
252b5132
RH
280\f
281/* Hash table routines. There is no way to free up a hash table. */
282
283/* An element in the hash table. Most uses will actually use a larger
284 structure, and an instance of this will be the first field. */
285
286struct bfd_hash_entry
287{
288 /* Next entry for this hash code. */
289 struct bfd_hash_entry *next;
290 /* String being hashed. */
291 const char *string;
292 /* Hash code. This is the full hash code, not the index into the
293 table. */
294 unsigned long hash;
295};
296
297/* A hash table. */
298
299struct bfd_hash_table
300{
301 /* The hash array. */
302 struct bfd_hash_entry **table;
252b5132
RH
303 /* A function used to create new elements in the hash table. The
304 first entry is itself a pointer to an element. When this
305 function is first invoked, this pointer will be NULL. However,
306 having the pointer permits a hierarchy of method functions to be
307 built each of which calls the function in the superclass. Thus
308 each function should be written to allocate a new block of memory
309 only if the argument is NULL. */
b34976b6 310 struct bfd_hash_entry *(*newfunc)
c58b9523 311 (struct bfd_hash_entry *, struct bfd_hash_table *, const char *);
07d6d2b8 312 /* An objalloc for this hash table. This is a struct objalloc *,
c58b9523
AM
313 but we use void * to avoid requiring the inclusion of objalloc.h. */
314 void *memory;
98f0b6ab
AM
315 /* The number of slots in the hash table. */
316 unsigned int size;
317 /* The number of entries in the hash table. */
318 unsigned int count;
319 /* The size of elements. */
320 unsigned int entsize;
321 /* If non-zero, don't grow the hash table. */
322 unsigned int frozen:1;
252b5132
RH
323};
324
325/* Initialize a hash table. */
0a1b45a2 326extern bool bfd_hash_table_init
c58b9523
AM
327 (struct bfd_hash_table *,
328 struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
329 struct bfd_hash_table *,
66eb6687
AM
330 const char *),
331 unsigned int);
252b5132
RH
332
333/* Initialize a hash table specifying a size. */
0a1b45a2 334extern bool bfd_hash_table_init_n
c58b9523
AM
335 (struct bfd_hash_table *,
336 struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
337 struct bfd_hash_table *,
338 const char *),
66eb6687 339 unsigned int, unsigned int);
252b5132
RH
340
341/* Free up a hash table. */
b34976b6 342extern void bfd_hash_table_free
c58b9523 343 (struct bfd_hash_table *);
252b5132 344
b34976b6 345/* Look up a string in a hash table. If CREATE is TRUE, a new entry
252b5132 346 will be created for this string if one does not already exist. The
b34976b6 347 COPY argument must be TRUE if this routine should copy the string
252b5132
RH
348 into newly allocated memory when adding an entry. */
349extern struct bfd_hash_entry *bfd_hash_lookup
0a1b45a2 350 (struct bfd_hash_table *, const char *, bool create, bool copy);
252b5132 351
a69898aa
AM
352/* Insert an entry in a hash table. */
353extern struct bfd_hash_entry *bfd_hash_insert
354 (struct bfd_hash_table *, const char *, unsigned long);
355
4e011fb5
AM
356/* Rename an entry in a hash table. */
357extern void bfd_hash_rename
358 (struct bfd_hash_table *, const char *, struct bfd_hash_entry *);
359
252b5132
RH
360/* Replace an entry in a hash table. */
361extern void bfd_hash_replace
c58b9523
AM
362 (struct bfd_hash_table *, struct bfd_hash_entry *old,
363 struct bfd_hash_entry *nw);
252b5132
RH
364
365/* Base method for creating a hash table entry. */
366extern struct bfd_hash_entry *bfd_hash_newfunc
c58b9523 367 (struct bfd_hash_entry *, struct bfd_hash_table *, const char *);
252b5132
RH
368
369/* Grab some space for a hash table entry. */
c58b9523
AM
370extern void *bfd_hash_allocate
371 (struct bfd_hash_table *, unsigned int);
252b5132
RH
372
373/* Traverse a hash table in a random order, calling a function on each
b34976b6 374 element. If the function returns FALSE, the traversal stops. The
252b5132 375 INFO argument is passed to the function. */
b34976b6 376extern void bfd_hash_traverse
c58b9523 377 (struct bfd_hash_table *,
0a1b45a2 378 bool (*) (struct bfd_hash_entry *, void *),
c58b9523 379 void *info);
252b5132 380
2d643429
NC
381/* Allows the default size of a hash table to be configured. New hash
382 tables allocated using bfd_hash_table_init will be created with
383 this size. */
8ad17b3a 384extern unsigned long bfd_hash_set_default_size (unsigned long);
2d643429 385
0ce398f1
L
386/* Types of compressed DWARF debug sections. We currently support
387 zlib. */
388enum compressed_debug_section_type
389{
390 COMPRESS_DEBUG_NONE = 0,
391 COMPRESS_DEBUG = 1 << 0,
ee0c0c50
L
392 COMPRESS_DEBUG_GNU_ZLIB = COMPRESS_DEBUG | 1 << 1,
393 COMPRESS_DEBUG_GABI_ZLIB = COMPRESS_DEBUG | 1 << 2
0ce398f1
L
394};
395
3722b82f
AM
396/* This structure is used to keep track of stabs in sections
397 information while linking. */
398
399struct stab_info
400{
401 /* A hash table used to hold stabs strings. */
402 struct bfd_strtab_hash *strings;
403 /* The header file hash table. */
404 struct bfd_hash_table includes;
405 /* The first .stabstr section. */
406 struct bfd_section *stabstr;
407};
408
c58b9523 409#define COFF_SWAP_TABLE (void *) &bfd_coff_std_swap_table
e43d48cc 410
b5f79c76 411/* User program access to BFD facilities. */
252b5132
RH
412
413/* Direct I/O routines, for programs which know more about the object
414 file than BFD does. Use higher level routines if possible. */
415
c58b9523
AM
416extern bfd_size_type bfd_bread (void *, bfd_size_type, bfd *);
417extern bfd_size_type bfd_bwrite (const void *, bfd_size_type, bfd *);
418extern int bfd_seek (bfd *, file_ptr, int);
7c192733 419extern file_ptr bfd_tell (bfd *);
c58b9523
AM
420extern int bfd_flush (bfd *);
421extern int bfd_stat (bfd *, struct stat *);
dc810e39
AM
422
423/* Deprecated old routines. */
424#if __GNUC__
425#define bfd_read(BUF, ELTSIZE, NITEMS, ABFD) \
8c8402cc 426 (_bfd_warn_deprecated ("bfd_read", __FILE__, __LINE__, __FUNCTION__), \
dc810e39
AM
427 bfd_bread ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
428#define bfd_write(BUF, ELTSIZE, NITEMS, ABFD) \
07d6d2b8 429 (_bfd_warn_deprecated ("bfd_write", __FILE__, __LINE__, __FUNCTION__), \
dc810e39
AM
430 bfd_bwrite ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
431#else
432#define bfd_read(BUF, ELTSIZE, NITEMS, ABFD) \
8c8402cc 433 (_bfd_warn_deprecated ("bfd_read", (const char *) 0, 0, (const char *) 0), \
dc810e39
AM
434 bfd_bread ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
435#define bfd_write(BUF, ELTSIZE, NITEMS, ABFD) \
8c8402cc 436 (_bfd_warn_deprecated ("bfd_write", (const char *) 0, 0, (const char *) 0),\
dc810e39
AM
437 bfd_bwrite ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
438#endif
8c8402cc 439extern void _bfd_warn_deprecated (const char *, const char *, int, const char *);
252b5132 440
0a1b45a2 441extern bool bfd_cache_close
c58b9523 442 (bfd *abfd);
d436a9b3
FCE
443/* NB: This declaration should match the autogenerated one in libbfd.h. */
444
0a1b45a2 445extern bool bfd_cache_close_all (void);
02d5a37b 446
0a1b45a2
AM
447extern bool bfd_record_phdr
448 (bfd *, unsigned long, bool, flagword, bool, bfd_vma,
449 bool, bool, unsigned int, struct bfd_section **);
252b5132
RH
450
451/* Byte swapping routines. */
452
8ce8c090
AM
453bfd_uint64_t bfd_getb64 (const void *);
454bfd_uint64_t bfd_getl64 (const void *);
455bfd_int64_t bfd_getb_signed_64 (const void *);
456bfd_int64_t bfd_getl_signed_64 (const void *);
edeb6e24
AM
457bfd_vma bfd_getb32 (const void *);
458bfd_vma bfd_getl32 (const void *);
459bfd_signed_vma bfd_getb_signed_32 (const void *);
460bfd_signed_vma bfd_getl_signed_32 (const void *);
461bfd_vma bfd_getb16 (const void *);
462bfd_vma bfd_getl16 (const void *);
463bfd_signed_vma bfd_getb_signed_16 (const void *);
464bfd_signed_vma bfd_getl_signed_16 (const void *);
8ce8c090
AM
465void bfd_putb64 (bfd_uint64_t, void *);
466void bfd_putl64 (bfd_uint64_t, void *);
edeb6e24
AM
467void bfd_putb32 (bfd_vma, void *);
468void bfd_putl32 (bfd_vma, void *);
7b4ae824
JD
469void bfd_putb24 (bfd_vma, void *);
470void bfd_putl24 (bfd_vma, void *);
edeb6e24
AM
471void bfd_putb16 (bfd_vma, void *);
472void bfd_putl16 (bfd_vma, void *);
8c603c85
NC
473
474/* Byte swapping routines which take size and endiannes as arguments. */
475
0a1b45a2
AM
476bfd_uint64_t bfd_get_bits (const void *, int, bool);
477void bfd_put_bits (bfd_uint64_t, void *, int, bool);
082b7297 478
f652615e 479
252b5132
RH
480/* mmap hacks */
481
482struct _bfd_window_internal;
483typedef struct _bfd_window_internal bfd_window_internal;
484
b5f79c76
NC
485typedef struct _bfd_window
486{
252b5132 487 /* What the user asked for. */
c58b9523 488 void *data;
252b5132
RH
489 bfd_size_type size;
490 /* The actual window used by BFD. Small user-requested read-only
491 regions sharing a page may share a single window into the object
492 file. Read-write versions shouldn't until I've fixed things to
493 keep track of which portions have been claimed by the
494 application; don't want to give the same region back when the
495 application wants two writable copies! */
496 struct _bfd_window_internal *i;
b5f79c76
NC
497}
498bfd_window;
252b5132 499
b34976b6 500extern void bfd_init_window
c58b9523 501 (bfd_window *);
b34976b6 502extern void bfd_free_window
c58b9523 503 (bfd_window *);
0a1b45a2
AM
504extern bool bfd_get_file_window
505 (bfd *, file_ptr, bfd_size_type, bfd_window *, bool);
640197ac
AM
506\f
507/* Externally visible ELF routines. */
508
509/* Create a new BFD as if by bfd_openr. Rather than opening a file,
510 reconstruct an ELF file by reading the segments out of remote
511 memory based on the ELF file header at EHDR_VMA and the ELF program
512 headers it points to. If non-zero, SIZE is the known extent of the
513 object. If not null, *LOADBASEP is filled in with the difference
514 between the VMAs from which the segments were read, and the VMAs
515 the file headers (and hence BFD's idea of each section's VMA) put
516 them at.
517
518 The function TARGET_READ_MEMORY is called to copy LEN bytes from
519 the remote memory at target address VMA into the local buffer at
520 MYADDR; it should return zero on success or an `errno' code on
521 failure. TEMPL must be a BFD for a target with the word size and
522 byte order found in the remote memory. */
523extern bfd *bfd_elf_bfd_from_remote_memory
524 (bfd *templ, bfd_vma ehdr_vma, bfd_size_type size, bfd_vma *loadbasep,
525 int (*target_read_memory) (bfd_vma vma, bfd_byte *myaddr,
526 bfd_size_type len));
527
528/* Forward declarations. */
529struct ecoff_debug_info;
530struct ecoff_debug_swap;
531struct ecoff_extr;
532struct bfd_link_info;
533struct bfd_link_hash_entry;
e9338841
AM
534
535/* Return TRUE if the start of STR matches PREFIX, FALSE otherwise. */
536
0a1b45a2 537static inline bool
e9338841
AM
538startswith (const char *str, const char *prefix)
539{
540 return strncmp (str, prefix, strlen (prefix)) == 0;
541}
This page took 1.025777 seconds and 4 git commands to generate.