diff options
| author | Mattias Andrée <m@maandree.se> | 2025-11-23 21:33:38 +0100 |
|---|---|---|
| committer | Mattias Andrée <m@maandree.se> | 2025-11-23 21:33:38 +0100 |
| commit | 226d807bb8bc0cdbc011b2e616ac02881e74c542 (patch) | |
| tree | e35bcc0f0b2bad8abfbb5da6db5580a813ca48bc /libquanta_malloc_palette.c | |
| download | libquanta-226d807bb8bc0cdbc011b2e616ac02881e74c542.tar.gz libquanta-226d807bb8bc0cdbc011b2e616ac02881e74c542.tar.bz2 libquanta-226d807bb8bc0cdbc011b2e616ac02881e74c542.tar.xz | |
First commit
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to '')
| -rw-r--r-- | libquanta_malloc_palette.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/libquanta_malloc_palette.c b/libquanta_malloc_palette.c new file mode 100644 index 0000000..816fb89 --- /dev/null +++ b/libquanta_malloc_palette.c @@ -0,0 +1,21 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" + + +struct libquanta_palette * +libquanta_malloc_palette(size_t ncolours, size_t nchannels) +{ + struct libquanta_palette *ret; + size_t size; + + if (libquanta_palette_size(ncolours, nchannels, &size)) { + if (errno == EOVERFLOW) + errno = ENOMEM; + return NULL; + } + + ret = malloc(size); + if (ret) + ret->size = ncolours; + return ret; +} |
