summaryrefslogtreecommitdiff
path: root/rust-src/bch_bindgen/src/opts.rs
blob: e2261993b98f8e8690db28d8bea9a247e3bf159b (plain)
1
2
3
4
5
6
7
8
9
#[macro_export]
macro_rules! opt_set {
    ($opts:ident, $n:ident, $v:expr) => {
        bch_bindgen::paste! {
            $opts.$n = $v;
            $opts.[<set_ $n _defined>](1);
        }
    }
}