11 * Return the tty settings for the given file descriptor as a dictionary
12 * with a zero reference count.
14 * Returns NULL and sets errno file descriptor is not a valid tty.
16 Jim_Obj
*Jim_GetTtySettings(Jim_Interp
*interp
, int fd
);
19 * Sets the tty settings given in 'dictObjPtr'
21 * Returns JIM_OK if OK, JIM_ERR if any settings are invalid,
22 * or -1 (and sets errno) if the file descriptor is not a valid tty.
24 int Jim_SetTtySettings(Jim_Interp
*interp
, int fd
, Jim_Obj
*dictObjPtr
);