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

string_stream.h « stream « toolbox « lib - github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1827258d9b5c5ac075ff839b60f70360443ff7c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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