diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2025-04-29 05:27:06 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2025-04-29 19:31:26 +0300 |
commit | 41a2642774165afca3b053e28c297e50deb9fe91 (patch) | |
tree | b60fad9edeb00a0346a9c3a5fcc49c246a36a596 /c_implementation/include | |
parent | 606f4e09cee1cde4b1b8f41e71c166cbf79d21c5 (diff) | |
download | arching-kaos-tools-41a2642774165afca3b053e28c297e50deb9fe91.tar.gz arching-kaos-tools-41a2642774165afca3b053e28c297e50deb9fe91.tar.bz2 arching-kaos-tools-41a2642774165afca3b053e28c297e50deb9fe91.zip |
Documentation
Diffstat (limited to 'c_implementation/include')
-rw-r--r-- | c_implementation/include/libakfs.h | 24 |
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 |