mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-12-08 16:50:27 +00:00
First commit
This commit is contained in:
15
pkg/obiapat/apat_mem.h
Normal file
15
pkg/obiapat/apat_mem.h
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
|
||||
#ifndef __APAT_MEM_H__
|
||||
#define __APAT_MEM_H__
|
||||
|
||||
/* ----------------------------------------------- */
|
||||
/* macros */
|
||||
/* ----------------------------------------------- */
|
||||
|
||||
#define NEW(typ) (typ*)malloc(sizeof(typ))
|
||||
#define NEWN(typ, dim) (typ*)malloc((uint64_t)(dim) * sizeof(typ))
|
||||
#define REALLOC(typ, ptr, dim) (typ*)realloc((void *) (ptr), (uint64_t)(dim) * sizeof(typ))
|
||||
#define FREE(ptr) free((void *) ptr)
|
||||
|
||||
#endif /* __APAT_MEM_H__ */
|
||||
Reference in New Issue
Block a user