string_stream.h 235 B

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