enter 1.0.0

The only thing the crate doing is to privide constant CR, LF, CRLF and ENTER.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! The only thing the crate doing is to privide constant CR, LF, CRLF and ENTER.

pub const CR: &'static str = "\r";
pub const LF: &'static str = "\n";
pub const CRLF: &'static str = "\r\n";

/// newlines' character is CRLF. This indicate you're using Windows OS.
#[cfg(target_os = "windows")]
pub const ENTER: &'static str = CRLF;

/// newlines' character is LF. This indicate you're using non-Windows OS.
#[cfg(not(target_os = "windows"))]
pub const ENTER: &'static str = LF;