21 #ifndef NDN_DYNAMIC_UINT8_ARRAY_TYPES_H
22 #define NDN_DYNAMIC_UINT8_ARRAY_TYPES_H
24 #include "../common.h"
34 typedef uint8_t * (*ndn_ReallocFunction)
A struct ndn_DynamicUInt8Array holds a pointer to an allocated array, the length of the allocated arr...
Definition: dynamic-uint8-array-types.h:42
size_t length
the length of the allocated array buffer
Definition: dynamic-uint8-array-types.h:44
uint8_t * array
the allocated array buffer
Definition: dynamic-uint8-array-types.h:43
ndn_ReallocFunction realloc
a pointer to a function that reallocates array and returns a new pointer to a buffer of length bytes...
Definition: dynamic-uint8-array-types.h:45