💾 Archived View for gemini.rmf-dev.com › repo › Vaati › Vgmi › files › 4a3625151de2e4959e83eec20cfb3… captured on 2023-12-28 at 15:45:25. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
0 /*
1 * ISC License
2 * Copyright (c) 2023 RMF <rawmonk@firemail.cc>
3 */
4
5 FILE* storage_fopen(const char *name, const char *mode);
6 FILE* storage_download_fopen(const char *name, const char *mode);
7 int storage_download_exist(const char *name);
8 int storage_path(char *out, size_t length);
9 int storage_download_path(char *out, size_t length);
10 int storage_open(const char *name, int flags, int mode);
11 int storage_read(const char*, char*, size_t, size_t*);
12 int storage_init();
13 int storage_close();
14 extern int storage_fd;
15