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:
commit
baebefcb6a
6 changed files with 21 additions and 0 deletions
|
@ -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
|
||||||
---------------------------------
|
---------------------------------
|
||||||
|
|
||||||
|
|
|
@ -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,
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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};
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue