aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2025-04-29 05:27:06 +0300
committerkaotisk <kaotisk@arching-kaos.org>2025-04-29 05:27:06 +0300
commit4610d008632410166e8ff5f1fd38f96ab352c14d (patch)
tree7b4094750d8ee875cd6df705c42df80eea8e8525
parent977b8db0d5fb74e5c5d0b1912ef68986ae201038 (diff)
downloadarching-kaos-tools-4610d008632410166e8ff5f1fd38f96ab352c14d.tar.gz
arching-kaos-tools-4610d008632410166e8ff5f1fd38f96ab352c14d.tar.bz2
arching-kaos-tools-4610d008632410166e8ff5f1fd38f96ab352c14d.zip
Documentation
-rw-r--r--c_implementation/include/libakfs.h24
1 files changed, 23 insertions, 1 deletions
diff --git a/c_implementation/include/libakfs.h b/c_implementation/include/libakfs.h
index 31dd35e..f223c28 100644
--- a/c_implementation/include/libakfs.h
+++ b/c_implementation/include/libakfs.h
@@ -402,10 +402,32 @@ int ak_fs_ls();
*/
int ak_fs_main(int, char**);
+/**
+ * Compares an mt_branch with a NULL one
+ * @param mt_branch*
+ * @return boolean
+ */
bool ak_fs_mt_branch_is_null(mt_branch*);
+
+/**
+ * Compares two mt_branch between them
+ * @param mt_branch*
+ * @return boolean
+ */
bool ak_fs_mt_branch_compare(mt_branch*, mt_branch*);
-int ak_fs_mt_branch_resolve(mt_branch *);
+
+/**
+ * Concatenates a file from a root hash.
+ * @param sha512sum*
+ * @return int status
+ */
int ak_fs_cat_file_from_root_hash(sha512sum*);
+
+/**
+ * Concatenates a file from a akfs_map_v3 map
+ * @param akfs_map_v3*
+ * @return int status
+ */
int ak_fs_cfm(akfs_map_v3*);
#endif // AKFS