blob: 671f8a35ec6bf935755420c63a2c5adc2c4758ad (
plain) (
blame)
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
|
/* See LICENSE file for copyright and license details. */
#include "libsimple.h"
#ifndef TEST
static inline size_t
alloc_size_product(size_t n, va_list ap) /* TODO test */
{
size_t prod = n;
if (!n) {
errno = EINVAL;
return 0;
}
for (;;) {
n = va_arg(ap, size_t);
if (!n)
break;
if (n >= SIZE_MAX / prod) {
errno = ENOMEM;
return 0;
}
prod *= n;
}
return prod;
}
void *
libsimple_vmalloczn(int clear, size_t n, va_list ap) /* TODO test */
{
n = alloc_size_product(n, ap);
return !n ? NULL : clear ? calloc(1, n) : malloc(n);
}
void *
libsimple_vreallocn(void *ptr, size_t n, va_list ap) /* TODO test */
{
n = alloc_size_product(n, ap);
return !n ? NULL : realloc(ptr, n);
}
#else
#include "test.h"
int
main(void)
{
return 0;
}
#endif
|