aboutsummaryrefslogtreecommitdiff
path: root/examples/tty_conv.c
Commit message (Collapse)AuthorAgeFilesLines
* examples/tty_conv: fix build on muslViolet Purcell2023-05-121-2/+3
| | | | | | termio.h is the old System V version of the interface header, and is only provided in glibc and dietlibc as far as I can tell. This fixes it to use the POSIX termios.h instead.
* Add a conversation function exampleplanc2022-01-141-0/+177
* examples/Makefile.am: Add tty_conv to noinst_PROGRAMS * examples/tty_conv.c: A new example of conversation function.