blob: 148fc2ca612b0ad0cde0dcedcca04b946c02392f [file] [log] [blame]
/**
* @author: Jeff Thompson
* See COPYING for copyright and distribution information.
*/
#ifndef NDN_NDN_REALLOC_H
#define NDN_NDN_REALLOC_H
#include "dynamic-uchar-array.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* Wrap the C stdlib realloc to convert to/from void * to unsigned char *.
* This can be used by ndn_DynamicUCharArray_init.
* @param self This is ignored.
* @param array the allocated array buffer to realloc.
* @param length the length for the new array buffer.
* @return the new allocated array buffer.
*/
unsigned char *ndn_realloc(struct ndn_DynamicUCharArray *self, unsigned char *array, unsigned int length);
#ifdef __cplusplus
}
#endif
#endif