dtw_free()

Usage

Frees storage that was allocated from Net.Data's run-time heap using dtw_malloc(). The buffer points to the allocated storage to free.

Format

void dtw_free(void *buffer)

Parameters
buffer A pointer to the allocated storage to free.

Examples

char *myBuf;
long  nbytes = 8192;
 
myBuf = (char *)dtw_malloc(nbytes);
 
dtw_free((void *)myBuf);


[ Top of Page | Previous Page | Next Page | Index ]