# ju-tcs-tbop-24-lib-dcfk Implementation of POSIX head and tail functions. ## Functions ### head ```rust // Returns n first lines from given file. pub fn head(path: &Path, n: usize) -> Vec ``` ### tail ```rust // Returns n last lines from given file. pub fn tail(path: &Path, n: usize) -> Vec ```