XAlloc.c 1.08 KB
Newer Older
Hisham's avatar
Hisham committed
1
2
3
4
5
6
7

#include "XAlloc.h"
#include "RichString.h"

#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
8
#include <assert.h>
9
10
#include <err.h>
#include <stdlib.h>
Hisham's avatar
Hisham committed
11
12
13
14
15
16
#include <string.h>

/*{
#include <stdlib.h>
}*/

17
18
19
20
21
static inline void fail() {
   curs_set(1);
   endwin();
   err(1, NULL);
}
Hisham's avatar
Hisham committed
22
23
24
25

void* xMalloc(size_t size) {
   void* data = malloc(size);
   if (!data && size > 0) {
26
      fail();
Hisham's avatar
Hisham committed
27
28
29
30
31
32
   }
   return data;
}

void* xCalloc(size_t nmemb, size_t size) {
   void* data = calloc(nmemb, size);
33
   if (!data && nmemb > 0 && size > 0) {
34
      fail();
Hisham's avatar
Hisham committed
35
36
37
38
39
40
41
   }
   return data;
}

void* xRealloc(void* ptr, size_t size) {
   void* data = realloc(ptr, size);
   if (!data && size > 0) {
42
      fail();
Hisham's avatar
Hisham committed
43
44
45
46
   }
   return data;
}

47
48
49
50
51
52
53
54
55
56
57
58
59
#undef xStrdup
#undef xStrdup_
#ifdef NDEBUG
# define xStrdup_ xStrdup
#else
# define xStrdup(str_) (assert(str_), xStrdup_(str_))
#endif

#if ((__GNUC__ > 3) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3))
char* xStrdup_(const char* str) __attribute__((nonnull));
#endif // GNU C 3.3 or later

char* xStrdup_(const char* str) {
Hisham's avatar
Hisham committed
60
   char* data = strdup(str);
Hisham's avatar
Hisham committed
61
   if (!data) {
62
      fail();
Hisham's avatar
Hisham committed
63
64
65
   }
   return data;
}