Deallocates the memory associated with the indicated data structure. Format #include <tcpip$rpcxdr.h> bool_t xdr_free(xdrproc_t proc, char *objp);
1 – Arguments
proc The XDR routine for the data structure being freed. objp A pointer to the data structure to be freed.
2 – Description
Releases memory allocated for the data structure to which objp points. The pointer passed to this routine is not freed, but what it points to is freed (recursively). Use this routine to free decoded data that is no longer needed. Never use this routine for encoded data.
3 – Return Values
TRUE Indicate success. FALSE Indicates failure.