Files
Flipper-ARF/lib/toolbox/stream/string_stream.h
Andrea Santaniello d6c2757f21 First push, clean slate
2026-03-08 18:48:37 +01:00

18 lines
212 B
C

#pragma once
#include <stdlib.h>
#include "stream.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* Allocate string stream
* @return Stream*
*/
Stream* string_stream_alloc(void);
#ifdef __cplusplus
}
#endif