diff_man/
lib.rs

1
2
3
4
5
6
const DIFF_SIGN_LINE_ADDED: &str = "+";
const DIFF_SIGN_LINE_DELETED: &str = "-";
const DIFF_SIGN_LINE_DEFAULT: &str = " ";
const DIFF_SIGN_HEADER_ORIGIN: &str = "---";
const DIFF_SIGN_HEADER_NEW: &str = "+++";
const DIFF_SIGN_HUNK: &str = "@@";