cursetree/src/ct_alloc.h

8 lines
175 B
C

#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 */