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/toolbox/stream/string_stream.h')
-rw-r--r--lib/toolbox/stream/string_stream.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/toolbox/stream/string_stream.h b/lib/toolbox/stream/string_stream.h
new file mode 100644
index 00000000..1827258d
--- /dev/null
+++ b/lib/toolbox/stream/string_stream.h
@@ -0,0 +1,18 @@
+#pragma once
+#include <stdlib.h>
+#include <mlib/m-string.h>
+#include "stream.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**
+ * Allocate string stream
+ * @return Stream*
+ */
+Stream* string_stream_alloc();
+
+#ifdef __cplusplus
+}
+#endif \ No newline at end of file