Changeset View
Changeset View
Standalone View
Standalone View
bin/stty/modes.c
Show First 20 Lines • Show All 120 Lines • ▼ Show 20 Lines | static const struct modes imodes[] = { | ||||
{ "tandem", IXOFF, 0 }, | { "tandem", IXOFF, 0 }, | ||||
{ "-tandem", 0, IXOFF }, | { "-tandem", 0, IXOFF }, | ||||
{ "ixany", IXANY, 0 }, | { "ixany", IXANY, 0 }, | ||||
{ "-ixany", 0, IXANY }, | { "-ixany", 0, IXANY }, | ||||
{ "decctlq", 0, IXANY }, | { "decctlq", 0, IXANY }, | ||||
{ "-decctlq", IXANY, 0 }, | { "-decctlq", IXANY, 0 }, | ||||
{ "imaxbel", IMAXBEL, 0 }, | { "imaxbel", IMAXBEL, 0 }, | ||||
{ "-imaxbel", 0, IMAXBEL }, | { "-imaxbel", 0, IMAXBEL }, | ||||
{ "iutf8", IUTF8, 0 }, | |||||
{ "-iutf8", 0, IUTF8 }, | |||||
{ NULL, 0, 0 }, | { NULL, 0, 0 }, | ||||
}; | }; | ||||
static const struct modes lmodes[] = { | static const struct modes lmodes[] = { | ||||
{ "echo", ECHO, 0 }, | { "echo", ECHO, 0 }, | ||||
{ "-echo", 0, ECHO }, | { "-echo", 0, ECHO }, | ||||
{ "echoe", ECHOE, 0 }, | { "echoe", ECHOE, 0 }, | ||||
{ "-echoe", 0, ECHOE }, | { "-echoe", 0, ECHOE }, | ||||
▲ Show 20 Lines • Show All 109 Lines • Show Last 20 Lines |