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

@@ -28,6 +28,14 @@
#include "log.h"
#include "utarray.h"
/**
* @brief Opens an existing AaruFormat image file.
*
* Opens the specified image file and returns a pointer to the initialized aaruformat context.
*
* @param filepath Path to the image file to open.
* @return Pointer to the opened aaruformat context, or NULL on failure.
*/
void *aaruf_open(const char *filepath)
{
aaruformatContext *ctx = NULL;