// src/constants.rs
/// Header prepended to the generated output file.
pub const OUTPUT_FILE_HEADER: &str = "";
/// Separator used before the summary section.
pub const SUMMARY_SEPARATOR: &str = "---";
/// Prefix for the summary header line.
pub const SUMMARY_HEADER_PREFIX: &str = "Processed Files";
/// Default width for formatting line numbers. Actual width adjusts dynamically.
pub const DEFAULT_LINE_NUMBER_WIDTH: usize = 5;
// Add other constants as needed, e.g., default buffer sizes, etc.