MIRROR: javascript for 馃悳's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at type-hints-typescript 12 lines 218 B view raw
1#ifndef ANT_TTY_MODULE_H 2#define ANT_TTY_MODULE_H 3 4#include "types.h" 5 6void init_tty_module(void); 7ant_value_t tty_library(ant_t *js); 8 9bool tty_set_raw_mode(int fd, bool enable); 10bool tty_is_raw_mode(int fd); 11 12#endif