Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Utility routines. |
| 4 | * |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org> |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 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 |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 20 | */ |
| 21 | |
| 22 | #include <stdio.h> |
| 23 | #include <string.h> |
| 24 | #include <stdlib.h> |
| 25 | #include <unistd.h> |
| 26 | #include "libbb.h" |
| 27 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 28 | |
| 29 | #ifndef DMALLOC |
| 30 | extern void *xmalloc(size_t size) |
| 31 | { |
| 32 | void *ptr = malloc(size); |
Matt Kraai | a99b194 | 2002-02-26 15:28:22 +0000 | [diff] [blame] | 33 | if (ptr == NULL && size != 0) |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 34 | error_msg_and_die(memory_exhausted); |
| 35 | return ptr; |
| 36 | } |
| 37 | |
Matt Kraai | a99b194 | 2002-02-26 15:28:22 +0000 | [diff] [blame] | 38 | extern void *xrealloc(void *ptr, size_t size) |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 39 | { |
Matt Kraai | a99b194 | 2002-02-26 15:28:22 +0000 | [diff] [blame] | 40 | ptr = realloc(ptr, size); |
| 41 | if (ptr == NULL && size != 0) |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 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); |
Matt Kraai | a99b194 | 2002-02-26 15:28:22 +0000 | [diff] [blame] | 49 | if (ptr == NULL && nmemb != 0 && size != 0) |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 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 | |
Eric Andersen | db7d5fc | 2002-04-13 13:02:03 +0000 | [diff] [blame^] | 88 | /* Stupid gcc always includes its own builtin strlen()... */ |
| 89 | size_t xstrlen(const char *string) |
| 90 | { |
| 91 | return(strlen(string)); |
| 92 | } |
| 93 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 94 | /* END CODE */ |
| 95 | /* |
| 96 | Local Variables: |
| 97 | c-file-style: "linux" |
| 98 | c-basic-offset: 4 |
| 99 | tab-width: 4 |
| 100 | End: |
| 101 | */ |