flipper_format_stream_i.h 465 B

1234567891011121314151617181920212223
  1. #pragma once
  2. #include "flipper_format_stream.h"
  3. static const char flipper_format_delimiter = ':';
  4. static const char flipper_format_comment = '#';
  5. static const char flipper_format_eoln = '\n';
  6. static const char flipper_format_eolr = '\r';
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. /**
  11. * Write Flipper Format EOL to the stream
  12. * @param stream
  13. * @return true
  14. * @return false
  15. */
  16. bool flipper_format_stream_write_eol(Stream* stream);
  17. #ifdef __cplusplus
  18. }
  19. #endif