blob: eb93bf139d617a3950870cf98737a0e3b0ebb87a [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
5 * Copyright (C) tons of folks. Tracking down who wrote what
6 * isn't something I'm going to worry about... If you wrote something
7 * here, please feel free to acknowledge your work.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 * Based in part on code from sash, Copyright (c) 1999 by David I. Bell
24 * Permission has been granted to redistribute this code under the GPL.
25 *
26 */
27
28#include <stdio.h>
29#include <string.h>
30#include <stdlib.h>
31#include <unistd.h>
32#include "libbb.h"
33
Eric Andersenaad1a882001-03-16 22:47:14 +000034
35#ifndef DMALLOC
36extern void *xmalloc(size_t size)
37{
38 void *ptr = malloc(size);
39
40 if (!ptr)
41 error_msg_and_die(memory_exhausted);
42 return ptr;
43}
44
45extern void *xrealloc(void *old, size_t size)
46{
Eric Andersen029b4a02001-06-28 21:22:19 +000047 void *ptr;
48
49 /* SuS2 says "If size is 0 and ptr is not a null pointer, the
50 * object pointed to is freed." Do that here, in case realloc
51 * returns a NULL, since we don't want to choke in that case. */
52 if (size==0 && old) {
53 free(old);
54 return NULL;
55 }
56
57 ptr = realloc(old, size);
Eric Andersenaad1a882001-03-16 22:47:14 +000058 if (!ptr)
59 error_msg_and_die(memory_exhausted);
60 return ptr;
61}
62
63extern void *xcalloc(size_t nmemb, size_t size)
64{
65 void *ptr = calloc(nmemb, size);
66 if (!ptr)
67 error_msg_and_die(memory_exhausted);
68 return ptr;
69}
70
71extern char * xstrdup (const char *s) {
72 char *t;
73
74 if (s == NULL)
75 return NULL;
76
77 t = strdup (s);
78
79 if (t == NULL)
80 error_msg_and_die(memory_exhausted);
81
82 return t;
83}
84#endif
85
86extern char * xstrndup (const char *s, int n) {
87 char *t;
88
89 if (s == NULL)
90 error_msg_and_die("xstrndup bug");
91
92 t = xmalloc(++n);
93
94 return safe_strncpy(t,s,n);
95}
96
97FILE *xfopen(const char *path, const char *mode)
98{
99 FILE *fp;
100 if ((fp = fopen(path, mode)) == NULL)
101 perror_msg_and_die("%s", path);
102 return fp;
103}
104
105/* END CODE */
106/*
107Local Variables:
108c-file-style: "linux"
109c-basic-offset: 4
110tab-width: 4
111End:
112*/