Welcome to mirror list, hosted at ThFree Co, Russian Federation.

flipper_format_stream_i.h « flipper_format « lib - github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ee825d0ecc6f3030c1121859b15a1decfc910298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once
#include "flipper_format_stream.h"

static const char flipper_format_delimiter = ':';
static const char flipper_format_comment = '#';
static const char flipper_format_eoln = '\n';
static const char flipper_format_eolr = '\r';

#ifdef __cplusplus
extern "C" {
#endif

/**
 * Write Flipper Format EOL to the stream
 * @param stream 
 * @return true 
 * @return false 
 */
bool flipper_format_stream_write_eol(Stream* stream);

#ifdef __cplusplus
}
#endif