bool runic_close(runic_t r);¶
The above function signature outlines the operation regarding the closing of a runic file.
Arguments:¶
r – Arunic_tobject that was returned as a result of a successful open operation. Attempting to close any other object is an invalid operation. The program will almost certainly returnfalse. Attempting to close invalidrunic_tobjects is not encouraged.
Returns:¶
Following a successful close, the function will return true. On an unsuccessful close (e.g.: invalid object use), the function will return false.