product_os_cursor/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#![no_std]

mod cursor;

pub use cursor::Cursor;

#[cfg(feature = "byteorder")]
mod bo;

#[cfg(feature = "byteorder")]
pub use bo::*;

#[cfg(test)]
mod tests;

#[derive(Debug, PartialEq)]
pub enum Error {
    UnexpectedEof,
    InvalidInput,
}

pub type Result<T> = core::result::Result<T, Error>;

pub fn test() {
    
}