ju-tcs-tbop-24-lib-dcfk 1.0.1

Test library for tbop course at JU
Documentation

ju-tcs-tbop-24-lib-dcfk

Implementation of POSIX head and tail functions.

Functions

head

// Returns n first lines from given file.
pub fn head(path: &Path, n: usize) -> Vec<String>

tail

// Returns n last lines from given file.
pub fn tail(path: &Path, n: usize) -> Vec<String>