File: utils.c

package info (click to toggle)
prcs 1.2.11-7
  • links: PTS
  • area: main
  • in suites: slink
  • size: 2,748 kB
  • ctags: 3,097
  • sloc: cpp: 16,675; ansic: 5,725; sh: 4,887; lisp: 1,449; lex: 344; perl: 131; makefile: 131; pascal: 85
file content (85 lines) | stat: -rw-r--r-- 2,431 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/* -*-Mode: C;-*-
 * PRCS - The Project Revision Control System
 * Copyright (C) 1994  P. N. Hilfinger
 * Copyright (C) 1997  Josh MacDonald
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 * $Id: utils.c 1.6.1.1 Sun, 05 Jan 1997 02:59:04 -0800 jmacd $
 */


#include <stddef.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "utils.h"

void *_malloc_(size_t size)
    /* As for malloc, but screams if storage exhausted. */
{
    char *space = malloc(size);

    if (space == NULL) {
	(void) fputs("panic: storage exhausted.\n", stderr);
	exit(2);
    }

    return (void *) space;
}

void *_mrealloc_(void *V, int size, int N, int INCR)
    /* Assuming V points to a heap-allocated vector of size N*size if	*/
    /* N>0, and INCR > 0, return a pointer (possibly == V) to an area	*/
    /* of storage containing the same data, and an additional		*/
    /* size*INCR bytes at the end.  If N is 0, then acts like		*/
    /* _malloc_, and ignores the value of V.				*/
{
    if (N == 0)
	V = malloc(size * INCR);
    else
	V = realloc(V, size * (N+INCR));
    if (V == NULL) {
	(void) fputs("panic: storage exhausted.\n", stderr);
	exit(2);
    }
    return V;
}

void *_malloc0_(size_t size)
    /* As for _malloc_, but zeroes storage. */
{
    char *space = calloc(size, 1);
    if (space == NULL) {
	(void) fputs("panic: storage exhausted.\n", stderr);
	exit(2);
    }
    return (void *) space;
}

void *_mrealloc0_(void *V, int size, int N, int INCR)
     /* As for _mrealloc_, but zeroes added storage. */
{
    if (N == 0)
	V = malloc(size * INCR);
    else
	V = realloc(V, size * (N+INCR));
    if (V == NULL) {
	(void) fputs("panic: storage exhausted.\n", stderr);
	exit(2);
    }
    memset((char *) V + N * size, 0, INCR * size);
    return V;
}