1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
// TODO do w/out the unions?
// #![feature(untagged_unions)]

pub mod x264;

#[cfg(test)]
mod tests {
    use super::x264::*;
    use std::mem;
    #[test]
    fn init_and_version() {

    }
}