Subversion Repositories Kolibri OS

Rev

Rev 5217 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5217 Rev 6324
1
/* bucomm.h -- binutils common include file.
1
/* bucomm.h -- binutils common include file.
2
   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
-
 
3
   2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009
-
 
4
   Free Software Foundation, Inc.
2
   Copyright (C) 1991-2015 Free Software Foundation, Inc.
5
 
3
 
6
   This file is part of GNU Binutils.
4
   This file is part of GNU Binutils.
7
 
5
 
8
   This program is free software; you can redistribute it and/or modify
6
   This program is free software; you can redistribute it and/or modify
9
   it under the terms of the GNU General Public License as published by
7
   it under the terms of the GNU General Public License as published by
10
   the Free Software Foundation; either version 3 of the License, or
8
   the Free Software Foundation; either version 3 of the License, or
11
   (at your option) any later version.
9
   (at your option) any later version.
12
 
10
 
13
   This program is distributed in the hope that it will be useful,
11
   This program is distributed in the hope that it will be useful,
14
   but WITHOUT ANY WARRANTY; without even the implied warranty of
12
   but WITHOUT ANY WARRANTY; without even the implied warranty of
15
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
   GNU General Public License for more details.
14
   GNU General Public License for more details.
17
 
15
 
18
   You should have received a copy of the GNU General Public License
16
   You should have received a copy of the GNU General Public License
19
   along with this program; if not, write to the Free Software
17
   along with this program; if not, write to the Free Software
20
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
18
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21
   MA 02110-1301, USA.  */
19
   MA 02110-1301, USA.  */
22

20

23
#ifndef _BUCOMM_H
21
#ifndef _BUCOMM_H
24
#define _BUCOMM_H
22
#define _BUCOMM_H
-
 
23
 
-
 
24
/* In bucomm.c.  */
25
 
25
 
26
/* Return the filename in a static buffer.  */
26
/* Return the filename in a static buffer.  */
27
const char *bfd_get_archive_filename (const bfd *);
27
const char *bfd_get_archive_filename (const bfd *);
28
 
28
 
29
void bfd_nonfatal (const char *);
29
void bfd_nonfatal (const char *);
30
 
30
 
31
void bfd_nonfatal_message (const char *, const bfd *, const asection *,
31
void bfd_nonfatal_message (const char *, const bfd *, const asection *,
32
			   const char *, ...);
32
			   const char *, ...);
33
 
33
 
34
void bfd_fatal (const char *) ATTRIBUTE_NORETURN;
34
void bfd_fatal (const char *) ATTRIBUTE_NORETURN;
35
 
35
 
36
void report (const char *, va_list) ATTRIBUTE_PRINTF(1,0);
36
void report (const char *, va_list) ATTRIBUTE_PRINTF(1,0);
37
 
37
 
38
void fatal (const char *, ...) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN;
38
void fatal (const char *, ...) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN;
39
 
39
 
40
void non_fatal (const char *, ...) ATTRIBUTE_PRINTF_1;
40
void non_fatal (const char *, ...) ATTRIBUTE_PRINTF_1;
41
 
41
 
42
void set_default_bfd_target (void);
42
void set_default_bfd_target (void);
43
 
43
 
44
void list_matching_formats (char **);
44
void list_matching_formats (char **);
45
 
45
 
46
void list_supported_targets (const char *, FILE *);
46
void list_supported_targets (const char *, FILE *);
47
 
47
 
48
void list_supported_architectures (const char *, FILE *);
48
void list_supported_architectures (const char *, FILE *);
49
 
49
 
50
int display_info (void);
50
int display_info (void);
51
 
51
 
52
void print_arelt_descr (FILE *, bfd *, bfd_boolean);
52
void print_arelt_descr (FILE *, bfd *, bfd_boolean);
53
 
53
 
54
char *make_tempname (char *);
54
char *make_tempname (char *);
55
char *make_tempdir (char *);
55
char *make_tempdir (char *);
56
 
56
 
57
bfd_vma parse_vma (const char *, const char *);
57
bfd_vma parse_vma (const char *, const char *);
58
 
58
 
59
off_t get_file_size (const char *);
59
off_t get_file_size (const char *);
-
 
60
 
-
 
61
bfd_boolean is_valid_archive_path (char const *);
60
 
62
 
61
extern char *program_name;
63
extern char *program_name;
62
 
64
 
63
/* filemode.c */
65
/* In filemode.c.  */
64
void mode_string (unsigned long, char *);
66
void mode_string (unsigned long, char *);
65
 
67
 
66
/* version.c */
68
/* In version.c.  */
67
extern void print_version (const char *);
69
extern void print_version (const char *);
68
 
70
 
69
/* rename.c */
71
/* In rename.c.  */
70
extern void set_times (const char *, const struct stat *);
72
extern void set_times (const char *, const struct stat *);
71
 
73
 
72
extern int smart_rename (const char *, const char *, int);
74
extern int smart_rename (const char *, const char *, int);
73
 
75
 
74
/* libiberty.  */
76
/* In libiberty.  */
75
void *xmalloc (size_t);
77
void *xmalloc (size_t);
76
 
78
 
77
void *xrealloc (void *, size_t);
79
void *xrealloc (void *, size_t);
78
 
80
 
79
#endif /* _BUCOMM_H */
81
#endif /* _BUCOMM_H */