From be1841d6330eec1c105d5392242b2497f391969b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20Kala=C5=A1=20=28Floxen=29?= Date: Mon, 13 Jul 2026 21:56:54 +0200 Subject: [PATCH] =?UTF-8?q?AsterFS:=20p=C5=99id=C3=A1na=20deklarace=20aste?= =?UTF-8?q?rfs=5Fsync=20do=20ve=C5=99ejn=C3=A9ho=20rozhran=C3=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/storage.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/storage.h b/include/storage.h index 155ba62..eb06478 100644 --- a/include/storage.h +++ b/include/storage.h @@ -35,6 +35,7 @@ int asterfs_remove_dir(const char *name); int asterfs_write_file(const char *name, const u8 *data, u16 len); int asterfs_read_file(const char *name, u8 *out, u16 max_len); int asterfs_get_type(const char *name); +int asterfs_sync(void); void asterfs_list(void (*cb)(const char *name, u8 is_dir, u16 size)); void asterfs_list_dir(const char *path, void (*cb)(const char *name, u8 is_dir, u16 size));