1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-03 06:27:45 +00:00

Merge pull request #2442 from sylvestre/doc

Document the source documentation + document some modules
This commit is contained in:
Sylvestre Ledru 2021-08-25 14:09:01 +02:00 committed by GitHub
commit baebefcb6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 21 additions and 0 deletions

View file

@ -1,3 +1,14 @@
Documentation
-------------
The source of the documentation is available on:
https://uutils.github.io/coreutils-docs/coreutils/
The documentation is updated everyday on this repository:
https://github.com/uutils/coreutils-docs
Code Coverage Report Generation Code Coverage Report Generation
--------------------------------- ---------------------------------

View file

@ -6,6 +6,8 @@
// For the full copyright and license information, please view the LICENSE // For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code. // file that was distributed with this source code.
//! Set of functions to manage files and symlinks
#[cfg(unix)] #[cfg(unix)]
use libc::{ use libc::{
mode_t, S_IFBLK, S_IFCHR, S_IFDIR, S_IFIFO, S_IFLNK, S_IFMT, S_IFREG, S_IFSOCK, S_IRGRP, mode_t, S_IFBLK, S_IFCHR, S_IFDIR, S_IFIFO, S_IFLNK, S_IFMT, S_IFREG, S_IFSOCK, S_IRGRP,

View file

@ -7,6 +7,8 @@
// For the full copyright and license information, please view the LICENSE file // For the full copyright and license information, please view the LICENSE file
// that was distributed with this source code. // that was distributed with this source code.
//! Set of functions to manage file systems
// spell-checker:ignore (arch) bitrig ; (fs) cifs smbfs // spell-checker:ignore (arch) bitrig ; (fs) cifs smbfs
extern crate time; extern crate time;

View file

@ -5,6 +5,8 @@
// For the full copyright and license information, please view the LICENSE // For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code. // file that was distributed with this source code.
//! Set of functions to parse modes
// spell-checker:ignore (vars) fperm srwx // spell-checker:ignore (vars) fperm srwx
use libc::{mode_t, S_IRGRP, S_IROTH, S_IRUSR, S_IWGRP, S_IWOTH, S_IWUSR}; use libc::{mode_t, S_IRGRP, S_IROTH, S_IRUSR, S_IWGRP, S_IWOTH, S_IWUSR};

View file

@ -3,6 +3,8 @@
// For the full copyright and license information, please view the LICENSE // For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code. // file that was distributed with this source code.
//! Common functions to manage permissions
use crate::error::UResult; use crate::error::UResult;
pub use crate::features::entries; pub use crate::features::entries;
use crate::fs::resolve_relative_path; use crate::fs::resolve_relative_path;

View file

@ -9,6 +9,8 @@
// spell-checker:ignore (vars) cvar exitstatus // spell-checker:ignore (vars) cvar exitstatus
// spell-checker:ignore (sys/unix) WIFSIGNALED // spell-checker:ignore (sys/unix) WIFSIGNALED
//! Set of functions to manage IDs
use libc::{gid_t, pid_t, uid_t}; use libc::{gid_t, pid_t, uid_t};
use std::fmt; use std::fmt;
use std::io; use std::io;