ztmux 3.7.20

A Rust port of tmux — the full terminal multiplexer, server and client
Documentation
1
2
3
4
5
6
7
use core::ffi::{c_char, c_int};
unsafe extern "C" {
    pub unsafe fn utempter_add_record(master_fd: c_int, hostname: *const c_char) -> c_int;
    pub unsafe fn utempter_remove_added_record() -> c_int;
    pub unsafe fn utempter_remove_record(master_fd: c_int) -> c_int;
    pub unsafe fn utempter_set_helper(pathname: *const c_char);
}