Add detailed documentation for various processing functions in AaruFormat

This commit is contained in:
2025-09-30 13:08:45 +01:00
parent 0260bcb4c3
commit 9382243369
30 changed files with 650 additions and 21 deletions

View File

@@ -29,6 +29,14 @@
#include "internal.h"
#include "log.h"
/**
* @brief Closes an AaruFormat image context and frees resources.
*
* Closes the image file, frees memory, and releases all resources associated with the context.
*
* @param context Pointer to the aaruformat context to close.
* @return 0 on success, or -1 on error.
*/
int aaruf_close(void *context)
{
TRACE("Entering aaruf_close(%p)", context);