git-status-vars 1.3.0

Summarize git repo info into shell variables (for use in a prompt)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Windows specific functionality.
//!
//! This is part of the executable, not the library; `unsafe` is allowed.

use super::params::Params;

/// Stub type to make clippy complain less.
pub struct Nothing;

/// Hook to process `Params`.
pub const fn os_params_hook(_params: &Params) -> Nothing {
    Nothing
}

/// Hook at normal process end.
pub const fn os_exit_hook(_: Nothing) {}