void stream_destroy(stream_t **s);
Destroy a previously created public stream_t handle of the stream port.
s == NULL, the function does nothing.s != NULL and *s == NULL, the function does nothing.*s.*s is set to NULL.stream_destroy() is the matching destructor for handles created by stream_create().NULL handle pointer or an already-NULL handle is accepted as a no-op.