The ": " is already added by vperror_msg... oops.
[oweals/opkg-lede.git] / libbb / xfuncs.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Utility routines.
4  *
5  * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
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 2 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 GNU
15  * 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, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20  */
21
22 #include <stdio.h>
23 #include <string.h>
24 #include <stdlib.h>
25 #include <unistd.h>
26 #include "libbb.h"
27
28
29 #ifndef DMALLOC
30 extern void *xmalloc(size_t size)
31 {
32         void *ptr = malloc(size);
33         if (ptr == NULL && size != 0)
34                 error_msg_and_die(memory_exhausted);
35         return ptr;
36 }
37
38 extern void *xrealloc(void *ptr, size_t size)
39 {
40         ptr = realloc(ptr, size);
41         if (ptr == NULL && size != 0)
42                 error_msg_and_die(memory_exhausted);
43         return ptr;
44 }
45
46 extern void *xcalloc(size_t nmemb, size_t size)
47 {
48         void *ptr = calloc(nmemb, size);
49         if (ptr == NULL && nmemb != 0 && size != 0)
50                 error_msg_and_die(memory_exhausted);
51         return ptr;
52 }
53
54 extern char * xstrdup (const char *s) {
55         char *t;
56
57         if (s == NULL)
58                 return NULL;
59
60         t = strdup (s);
61
62         if (t == NULL)
63                 error_msg_and_die(memory_exhausted);
64
65         return t;
66 }
67 #endif
68
69 extern char * xstrndup (const char *s, int n) {
70         char *t;
71
72         if (s == NULL)
73                 error_msg_and_die("xstrndup bug");
74
75         t = xmalloc(++n);
76         
77         return safe_strncpy(t,s,n);
78 }
79
80 FILE *xfopen(const char *path, const char *mode)
81 {
82         FILE *fp;
83         if ((fp = fopen(path, mode)) == NULL)
84                 perror_msg_and_die("%s", path);
85         return fp;
86 }
87
88 /* END CODE */
89 /*
90 Local Variables:
91 c-file-style: "linux"
92 c-basic-offset: 4
93 tab-width: 4
94 End:
95 */