unleashed-firmware/lib/toolbox/stream/string_stream.h
2024-03-25 13:53:32 +03:00

17 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