1 /* A program to test BFD.
2 Copyright (C) 2012-2019 Free Software Foundation, Inc.
4 This file is part of the GNU Binutils.
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.
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.
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. */
27 printf ("oops: %s\n", s);
32 main (int argc, char **argv)
38 die ("usage: bfdtest1 <archive>");
40 archive = bfd_openr (argv[1], NULL);
42 die ("no such archive");
44 if (!bfd_check_format (archive, bfd_archive))
47 die ("bfd_check_format");
50 for (last = bfd_openr_next_archived_file (archive, NULL);
54 next = bfd_openr_next_archived_file (archive, last);
58 for (last = bfd_openr_next_archived_file (archive, NULL);
62 next = bfd_openr_next_archived_file (archive, last);
66 if (!bfd_close (archive))