blob: 291bfafd6276acf798010a5e64a9af8fea97c1f5 [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00005 * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
Eric Andersenaad1a882001-03-16 22:47:14 +00006 *
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
Eric Andersenaad1a882001-03-16 22:47:14 +000020 */
21
22#include <stdio.h>
23#include <string.h>
24#include <stdlib.h>
25#include <unistd.h>
26#include "libbb.h"
27
Eric Andersenaad1a882001-03-16 22:47:14 +000028
29#ifndef DMALLOC
30extern 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
39extern void *xrealloc(void *old, size_t size)
40{
Eric Andersen029b4a02001-06-28 21:22:19 +000041 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);
Eric Andersenaad1a882001-03-16 22:47:14 +000052 if (!ptr)
53 error_msg_and_die(memory_exhausted);
54 return ptr;
55}
56
57extern 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
65extern 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
80extern 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
91FILE *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/*
101Local Variables:
102c-file-style: "linux"
103c-basic-offset: 4
104tab-width: 4
105End:
106*/