mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 12:42:30 +04:00
18 lines
212 B
C
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
|