cursetree/src/ct_alloc.h

9 lines
175 B
C
Raw Normal View History

2025-09-28 00:06:40 +10:00
#ifndef CURSETREE_ALLOC_H
#define CURSETREE_ALLOC_H
#include <stdlib.h>
#define CT_ALLOC(type, count) ((type *)malloc(sizeof(type) * count))
#endif /* CURSETREE_ALLOC_H */