string_stream.h 208 B

1234567891011121314151617
  1. #pragma once
  2. #include <stdlib.h>
  3. #include "stream.h"
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. /**
  8. * Allocate string stream
  9. * @return Stream*
  10. */
  11. Stream* string_stream_alloc();
  12. #ifdef __cplusplus
  13. }
  14. #endif