[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
bfd_get_section_by_name
asection *bfd_get_section_by_name (bfd *abfd, const char *name); |
asection
s whose name matches name, otherwise NULL
.
See section 2.6 Sections, for more information.
This should only be used in special cases; the normal way to process
all sections of a given name is to use bfd_map_over_sections
and
strcmp
on the name (or better yet, base it on the section flags
or something else) for each section.