ztmux 3.7.20

A Rust port of tmux — the full terminal multiplexer, server and client
Documentation
1
2
3
4
5
6
7
8
/// C `vendor/tmux/compat/systemd.c:45`: `int systemd_create_socket(int flags, char **cause)`
pub fn systemd_create_socket(flags: i32, cause: *mut *mut u8) -> i32 {
    unsafe extern "C" {
        /// C `vendor/tmux/compat/systemd.c:45`: `int systemd_create_socket(int flags, char **cause)`
        fn systemd_create_socket(flags: i32, cause: *mut *mut u8) -> i32;
    }
    unsafe { systemd_create_socket(flags, cause) }
}