diff options
| author | Jakob Kaivo <jkk@ung.org> | 2022-04-13 19:52:12 -0400 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2022-04-13 19:52:12 -0400 |
| commit | c93dd9bc67485586f3fad4958e70a1fd3c83c2d4 (patch) | |
| tree | 70dccb9034eceaa3d8df4330207c3d7756e0334e /src/term/tgetnum.c | |
| parent | efeeb5db9e8178a5f0ade3f99832782ab0cb4442 (diff) | |
split out curses
Diffstat (limited to 'src/term/tgetnum.c')
| -rw-r--r-- | src/term/tgetnum.c | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/src/term/tgetnum.c b/src/term/tgetnum.c deleted file mode 100644 index 18307000..00000000 --- a/src/term/tgetnum.c +++ /dev/null @@ -1,57 +0,0 @@ -#include <term.h> - -int tgetnum(char id[2]) -{ - size_t i; - const struct { - char ti[3]; - char tc[8]; - } map[] = { - { "Yo", "bitwin" }, - { "Yp", "bitype" }, - { "Ya", "bufsz" }, - { "BT", "btns" }, - { "co", "cols" }, - { "Yc", "spinh" }, - { "Yb", "spinv" }, - { "it", "it" }, - { "lh", "lh" }, - { "lw", "lw" }, - { "li", "lines" }, - { "lm", "lm" }, - { "ma", "ma" }, - { "sg", "xmc" }, - { "Co", "colors" }, - { "Yd", "maddr" }, - { "Ye", "mjump" }, - { "pa", "pairs" }, - { "MW", "wnum" }, - { "Yf", "mcs" }, - { "Yg", "mls" }, - { "NC", "ncv" }, - { "Nl", "nlab" }, - { "Yh", "npins" }, - { "Yi", "orc" }, - { "Yj", "orl" }, - { "Yk", "orhi" }, - { "Yl", "orvi" }, - { "pb", "pb" }, - { "Ym", "cps" }, - { "vt", "vt" }, - { "Yn", "widcs" }, - { "ws", "wsl" }, - }; - - for (i = 0; i < sizeof(map) / sizeof(map[0]); i++) { - if (map[i].tc[0] == id[0] && map[i].tc[1] == id[1]) { - return tigetnum(map[i].tc); - } - } - - return -1; -} - -/* -XOPEN(400, 700) -LINK(curses) -*/ |
