XAlloc.c 1.39 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 <stdlib.h>
Hisham's avatar
Hisham committed
9
10
11
#include <string.h>

/*{
12
#include <err.h>
13
#include <assert.h>
Hisham's avatar
Hisham committed
14
15
16
#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
#define xSnprintf(fmt, len, ...) do { int _l=len; int _n=snprintf(fmt, _l, __VA_ARGS__); if (!(_n > -1 && _n < _l)) { curs_set(1); endwin(); err(1, NULL); } } while(0)

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

57
58
59
60
61
#ifndef __has_attribute // Clang's macro
# define __has_attribute(x) 0
#endif
#if (__has_attribute(nonnull) || \
    ((__GNUC__ > 3) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3)))
62
char* xStrdup_(const char* str) __attribute__((nonnull));
63
#endif // __has_attribute(nonnull) || GNU C 3.3 or later
64
65

char* xStrdup_(const char* str) {
Hisham's avatar
Hisham committed
66
   char* data = strdup(str);
Hisham's avatar
Hisham committed
67
   if (!data) {
68
      fail();
Hisham's avatar
Hisham committed
69
70
71
   }
   return data;
}