blob: acd4d6985d2d1cdc05cc60c66d38d15f7bb35e53 [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);
Matt Kraaia99b1942002-02-26 15:28:22 +000033 if (ptr == NULL && size != 0)
Eric Andersenaad1a882001-03-16 22:47:14 +000034 error_msg_and_die(memory_exhausted);
35 return ptr;
36}
37
Matt Kraaia99b1942002-02-26 15:28:22 +000038extern void *xrealloc(void *ptr, size_t size)
Eric Andersenaad1a882001-03-16 22:47:14 +000039{
Matt Kraaia99b1942002-02-26 15:28:22 +000040 ptr = realloc(ptr, size);
41 if (ptr == NULL && size != 0)
Eric Andersenaad1a882001-03-16 22:47:14 +000042 error_msg_and_die(memory_exhausted);
43 return ptr;
44}
45
46extern void *xcalloc(size_t nmemb, size_t size)
47{
48 void *ptr = calloc(nmemb, size);
Matt Kraaia99b1942002-02-26 15:28:22 +000049 if (ptr == NULL && nmemb != 0 && size != 0)
Eric Andersenaad1a882001-03-16 22:47:14 +000050 error_msg_and_die(memory_exhausted);
51 return ptr;
52}
53
54extern 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
69extern 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
80FILE *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
Eric Andersendb7d5fc2002-04-13 13:02:03 +000088/* Stupid gcc always includes its own builtin strlen()... */
89size_t xstrlen(const char *string)
90{
91 return(strlen(string));
92}
93
Eric Andersenaad1a882001-03-16 22:47:14 +000094/* END CODE */
95/*
96Local Variables:
97c-file-style: "linux"
98c-basic-offset: 4
99tab-width: 4
100End:
101*/