Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/flipper_file/flipper_file_helper.h')
-rw-r--r--lib/flipper_file/flipper_file_helper.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/lib/flipper_file/flipper_file_helper.h b/lib/flipper_file/flipper_file_helper.h
deleted file mode 100644
index 53dc3ad9..00000000
--- a/lib/flipper_file/flipper_file_helper.h
+++ /dev/null
@@ -1,52 +0,0 @@
-#pragma once
-#include <stdint.h>
-#include <mlib/m-string.h>
-#include <storage/storage.h>
-#include "file_helper.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-extern const char* const flipper_file_filetype_key;
-extern const char* const flipper_file_version_key;
-extern const char flipper_file_delimiter;
-extern const char flipper_file_comment;
-
-/**
- * Reads a valid key from a file as a string.
- * After reading, the rw pointer will be on the flipper_file_delimiter symbol.
- * Optimized not to read comments and values into RAM.
- * @param file
- * @param key
- * @return true on success read
- */
-bool flipper_file_read_valid_key(File* file, string_t key);
-
-/**
- * Sets rw pointer to the data after the key
- * @param file
- * @param key
- * @param strict
- * @return true if key was found
- */
-bool flipper_file_seek_to_key(File* file, const char* key, bool strict);
-
-/**
- * Write key and key delimiter
- * @param file
- * @param key
- * @return bool
- */
-bool flipper_file_write_key(File* file, const char* key);
-
-/**
- * Get scratchpad name and path
- * @param name
- * @return bool
- */
-bool flipper_file_get_scratchpad_name(const char** name);
-
-#ifdef __cplusplus
-}
-#endif