lc3_sys/
lib.rs

1#![allow(non_upper_case_globals)]
2#![allow(non_camel_case_types)]
3#![allow(non_snake_case)]
4
5include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
6
7#[cfg(test)]
8mod test {
9    use super::*;
10
11    #[test]
12    fn linked_correctly() {
13        assert_eq!(LC3_MAX_BITRATE, 320000)
14    }
15}