mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-15 15:32:40 +00:00
585b7f963d
merge ofw commit
17 lines
212 B
C
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
|