istream_destroy()
#
Releases all resources associated with the given istream_h
instance, including its internal buffer and allocated memory.
Prototype
void istream_destroy(
istream_h istream
);
Parameters
Key |
Type |
Description |
---|---|---|
|
|
Handle to the input stream instance to be destroyed. |
Return Value
This function does not return a value.
Notes
After calling istream_destroy()
, the istream_h
handle becomes invalid and should not be used.
Prototype
// Not applicable in JS
Prototype
# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples