Open the source before creating the destination.
[oweals/busybox.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
34         if (!ptr)
35                 error_msg_and_die(memory_exhausted);
36         return ptr;
37 }
38
39 extern void *xrealloc(void *old, size_t size)
40 {
41         void *ptr;
42
43         /* SuS2 says "If size is 0 and ptr is not a null pointer, the
44          * object pointed to is freed."  Do that here, in case realloc
45          * returns a NULL, since we don't want to choke in that case. */
46         if (size==0 && old) {
47                 free(old);
48                 return NULL;
49         }
50
51         ptr = realloc(old, size);
52         if (!ptr)
53                 error_msg_and_die(memory_exhausted);
54         return ptr;
55 }
56
57 extern void *xcalloc(size_t nmemb, size_t size)
58 {
59         void *ptr = calloc(nmemb, size);
60         if (!ptr)
61                 error_msg_and_die(memory_exhausted);
62         return ptr;
63 }
64
65 extern char * xstrdup (const char *s) {
66         char *t;
67
68         if (s == NULL)
69                 return NULL;
70
71         t = strdup (s);
72
73         if (t == NULL)
74                 error_msg_and_die(memory_exhausted);
75
76         return t;
77 }
78 #endif
79
80 extern char * xstrndup (const char *s, int n) {
81         char *t;
82
83         if (s == NULL)
84                 error_msg_and_die("xstrndup bug");
85
86         t = xmalloc(++n);
87         
88         return safe_strncpy(t,s,n);
89 }
90
91 FILE *xfopen(const char *path, const char *mode)
92 {
93         FILE *fp;
94         if ((fp = fopen(path, mode)) == NULL)
95                 perror_msg_and_die("%s", path);
96         return fp;
97 }
98
99 /* END CODE */
100 /*
101 Local Variables:
102 c-file-style: "linux"
103 c-basic-offset: 4
104 tab-width: 4
105 End:
106 */