tfc 0.7.0

The Fat Controller. A library for simulating mouse and keyboard events.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// string.h

use std::ffi::c_int;

extern {
    // https://man7.org/linux/man-pages/man3/strerror_l.3.html
    pub fn strerror(errnum: c_int) -> *const u8;

    // https://man7.org/linux/man-pages/man3/strlen.3.html
    pub fn strlen(s: *const u8) -> usize;
}