October 05, 2015
Is it just me, or is not posix termios.h implemented in phobos? (git), I am looking at core.sys.linux.termios but all I get there is a few enums(B57600, B115200, etc..)?
October 05, 2015
On Monday, October 05, 2015 05:58:32 Alexander via Digitalmars-d-learn wrote:
> Is it just me, or is not posix termios.h implemented in phobos?
> (git), I am looking at core.sys.linux.termios but all I get there
> is a few enums(B57600, B115200, etc..)?

There's a core.sys.posix.termios and core.sys.linux.termios. It looks like most of the implementation is in core.sys.posix.termios, and core.sys.linux.termios publicly imports it.

- Jonathan M Davis