1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
mod algorithm;
mod errors;

pub use algorithm::merge;
pub use errors::{Error, Result};

pub struct C3 {
    reverse: bool,
    python: bool,
}

impl Default for C3 {
    fn default() -> Self {
        Self { reverse: false, python: false }
    }
}