-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmisc.c
executable file
·60 lines (51 loc) · 1.77 KB
/
misc.c
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
#include "misc.h"
/***********************************************************************/
/* FUNCTION: void Assert(int assertion, char* error) */
/**/
/* INPUTS: assertion should be a predicated that the programmer */
/* assumes to be true. If this assumption is not true the message */
/* error is printed and the program exits. */
/**/
/* OUTPUT: None. */
/**/
/* Modifies input: none */
/**/
/* Note: If DEBUG_ASSERT is not defined then assertions should not */
/* be in use as they will slow down the code. Therefore the */
/* compiler will complain if an assertion is used when */
/* DEBUG_ASSERT is undefined. */
/***********************************************************************/
void Assert(int assertion, char* error) {
if(!assertion) {
printf("Assertion Failed: %s\n",error);
exit(-1);
}
}
/***********************************************************************/
/* FUNCTION: SafeMalloc */
/**/
/* INPUTS: size is the size to malloc */
/**/
/* OUTPUT: returns pointer to allocated memory if succesful */
/**/
/* EFFECT: mallocs new memory. If malloc fails, prints error message */
/* and terminates program. */
/**/
/* Modifies Input: none */
/**/
/***********************************************************************/
void * SafeMalloc(size_t size) {
void * result;
if ( (result = malloc(size)) ) { /* assignment intentional */
return(result);
} else {
printf("memory overflow: malloc failed in SafeMalloc.");
printf(" Exiting Program.\n");
exit(-1);
return(0);
}
}
/* NullFunction does nothing it is included so that it can be passed */
/* as a function to RBTreeCreate when no other suitable function has */
/* been defined */
void NullFunction(void * junk) { ; }