Module Email_message_kernel.Lf_or_crlf

type t = [
  1. | `LF
    (*

    \n. Used to delineate new lines on most Unix systems.

    *)
  2. | `CRLF
    (*

    \r\n. Used to delineate new lines over the network.

    *)
]
val to_string : t -> string