ndn_realloc.h
1 
21 #ifndef NDN_NDN_REALLOC_H
22 #define NDN_NDN_REALLOC_H
23 
24 #include "dynamic-uint8-array.h"
25 
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29 
38 uint8_t *ndn_realloc(struct ndn_DynamicUInt8Array *self, uint8_t *array, size_t length);
39 
40 #ifdef __cplusplus
41 }
42 #endif
43 
44 #endif
A struct ndn_DynamicUInt8Array holds a pointer to an allocated array, the length of the allocated arr...
Definition: dynamic-uint8-array-types.h:40