Miscellaneous ld tidies
[deliverable/binutils-gdb.git] / gdb / common / common-utils.h
CommitLineData
d26e3629
KY
1/* Shared general utility routines for GDB, the GNU debugger.
2
ecd75fc8 3 Copyright (C) 1986-2014 Free Software Foundation, Inc.
d26e3629
KY
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20#ifndef COMMON_UTILS_H
21#define COMMON_UTILS_H
22
23#include "config.h"
24#include "ansidecl.h"
25#include <stddef.h>
26#include <stdarg.h>
27
df049a58
DE
28/* Version 2.4 and later of GCC define a magical variable `__PRETTY_FUNCTION__'
29 which contains the name of the function currently being defined.
30 This is broken in G++ before version 2.6.
31 C9x has a similar variable called __func__, but prefer the GCC one since
32 it demangles C++ function names. */
33#if (GCC_VERSION >= 2004)
34#define FUNCTION_NAME __PRETTY_FUNCTION__
35#else
36#if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
37#define FUNCTION_NAME __func__
38#endif
39#endif
40
d26e3629
KY
41extern void malloc_failure (long size) ATTRIBUTE_NORETURN;
42extern void internal_error (const char *file, int line, const char *, ...)
43 ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF (3, 4);
44
45/* xmalloc(), xrealloc() and xcalloc() have already been declared in
46 "libiberty.h". */
47
48/* Like xmalloc, but zero the memory. */
49void *xzalloc (size_t);
50
51void xfree (void *);
52
53/* Like asprintf and vasprintf, but return the string, throw an error
54 if no memory. */
55char *xstrprintf (const char *format, ...) ATTRIBUTE_PRINTF (1, 2);
56char *xstrvprintf (const char *format, va_list ap)
57 ATTRIBUTE_PRINTF (1, 0);
58
d26e3629
KY
59/* Like snprintf, but throw an error if the output buffer is too small. */
60int xsnprintf (char *str, size_t size, const char *format, ...)
61 ATTRIBUTE_PRINTF (3, 4);
62
baea0dae
PA
63/* Make a copy of the string at PTR with LEN characters
64 (and add a null character at the end in the copy).
65 Uses malloc to get the space. Returns the address of the copy. */
66
67char *savestring (const char *ptr, size_t len);
68
d26e3629 69#endif
This page took 0.275887 seconds and 4 git commands to generate.