hdfs_sys/
hdfs_3_3.rs

1//! hdfs 3.3 add new APIs:
2//!
3//! - hdfsPreadFully
4
5use std::os::raw::*;
6
7use crate::{hdfsFS, hdfsFile};
8
9extern "C" {
10    pub fn hdfsPreadFully(
11        fs: hdfsFS,
12        file: hdfsFile,
13        position: i64,
14        buffer: *mut c_void,
15        length: i32,
16    ) -> c_int;
17}