├── ANNOUNCE ├── AUTHORS ├── Ada95 ├── Makefile.in ├── README ├── TODO ├── aclocal.m4 ├── configure ├── configure.in ├── doc │ └── Makefile.in ├── gen │ ├── Makefile.in │ ├── adacurses-config.in │ ├── gen.c │ ├── html.m4 │ ├── normal.m4 │ ├── table.m4 │ ├── terminal_interface-curses-aux.ads.m4 │ ├── terminal_interface-curses-forms-field_types.ads.m4 │ ├── terminal_interface-curses-forms-field_user_data.ads.m4 │ ├── terminal_interface-curses-forms-form_user_data.ads.m4 │ ├── terminal_interface-curses-forms.ads.m4 │ ├── terminal_interface-curses-menus-item_user_data.ads.m4 │ ├── terminal_interface-curses-menus-menu_user_data.ads.m4 │ ├── terminal_interface-curses-menus.ads.m4 │ ├── terminal_interface-curses-mouse.ads.m4 │ ├── terminal_interface-curses-panels-user_data.ads.m4 │ ├── terminal_interface-curses-panels.ads.m4 │ ├── terminal_interface-curses-trace.ads.m4 │ ├── terminal_interface-curses.adb.m4 │ └── terminal_interface-curses.ads.m4 ├── include │ ├── MKncurses_def.sh │ ├── Makefile.in │ ├── ncurses_cfg.hin │ └── ncurses_defs ├── make-tar.sh ├── mk-1st.awk ├── package │ ├── AdaCurses-doc.spec │ ├── AdaCurses.spec │ └── debian │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── rules │ │ ├── source │ │ └── format │ │ └── watch ├── samples │ ├── Makefile.in │ ├── README │ ├── explain.txt │ ├── ncurses.adb │ ├── ncurses2-acs_and_scroll.adb │ ├── ncurses2-acs_and_scroll.ads │ ├── ncurses2-acs_display.adb │ ├── ncurses2-acs_display.ads │ ├── ncurses2-attr_test.adb │ ├── ncurses2-attr_test.ads │ ├── ncurses2-color_edit.adb │ ├── ncurses2-color_edit.ads │ ├── ncurses2-color_test.adb │ ├── ncurses2-color_test.ads │ ├── ncurses2-demo_forms.adb │ ├── ncurses2-demo_forms.ads │ ├── ncurses2-demo_pad.adb │ ├── ncurses2-demo_pad.ads │ ├── ncurses2-demo_panels.adb │ ├── ncurses2-demo_panels.ads │ ├── ncurses2-flushinp_test.adb │ ├── ncurses2-flushinp_test.ads │ ├── ncurses2-genericputs.adb │ ├── ncurses2-genericputs.ads │ ├── ncurses2-getch.ads │ ├── ncurses2-getch_test.adb │ ├── ncurses2-getch_test.ads │ ├── ncurses2-getopt.adb │ ├── ncurses2-getopt.ads │ ├── ncurses2-m.adb │ ├── ncurses2-m.ads │ ├── ncurses2-menu_test.adb │ ├── ncurses2-menu_test.ads │ ├── ncurses2-overlap_test.adb │ ├── ncurses2-overlap_test.ads │ ├── ncurses2-slk_test.adb │ ├── ncurses2-slk_test.ads │ ├── ncurses2-test_sgr_attributes.adb │ ├── ncurses2-test_sgr_attributes.ads │ ├── ncurses2-trace_set.adb │ ├── ncurses2-trace_set.ads │ ├── ncurses2-util.adb │ ├── ncurses2-util.ads │ ├── ncurses2.ads │ ├── rain.adb │ ├── rain.ads │ ├── sample-curses_demo-attributes.adb │ ├── sample-curses_demo-attributes.ads │ ├── sample-curses_demo-mouse.adb │ ├── sample-curses_demo-mouse.ads │ ├── sample-curses_demo.adb │ ├── sample-curses_demo.ads │ ├── sample-explanation.adb │ ├── sample-explanation.ads │ ├── sample-form_demo-aux.adb │ ├── sample-form_demo-aux.ads │ ├── sample-form_demo-handler.adb │ ├── sample-form_demo-handler.ads │ ├── sample-form_demo.adb │ ├── sample-form_demo.ads │ ├── sample-function_key_setting.adb │ ├── sample-function_key_setting.ads │ ├── sample-header_handler.adb │ ├── sample-header_handler.ads │ ├── sample-helpers.adb │ ├── sample-helpers.ads │ ├── sample-keyboard_handler.adb │ ├── sample-keyboard_handler.ads │ ├── sample-manifest.ads │ ├── sample-menu_demo-aux.adb │ ├── sample-menu_demo-aux.ads │ ├── sample-menu_demo-handler.adb │ ├── sample-menu_demo-handler.ads │ ├── sample-menu_demo.adb │ ├── sample-menu_demo.ads │ ├── sample-my_field_type.adb │ ├── sample-my_field_type.ads │ ├── sample-text_io_demo.adb │ ├── sample-text_io_demo.ads │ ├── sample.adb │ ├── sample.ads │ ├── status.adb │ ├── status.ads │ ├── tour.adb │ └── tour.ads └── src │ ├── Makefile.in │ ├── c_threaded_variables.c │ ├── c_threaded_variables.h │ ├── c_varargs_to_ada.c │ ├── c_varargs_to_ada.h │ ├── library.gpr │ ├── modules │ ├── ncurses_compat.c │ ├── terminal_interface-curses-aux.adb │ ├── terminal_interface-curses-forms-field_types-alpha.adb │ ├── terminal_interface-curses-forms-field_types-alpha.ads │ ├── terminal_interface-curses-forms-field_types-alphanumeric.adb │ ├── terminal_interface-curses-forms-field_types-alphanumeric.ads │ ├── terminal_interface-curses-forms-field_types-enumeration-ada.adb │ ├── terminal_interface-curses-forms-field_types-enumeration-ada.ads │ ├── terminal_interface-curses-forms-field_types-enumeration.adb │ ├── terminal_interface-curses-forms-field_types-enumeration.ads │ ├── terminal_interface-curses-forms-field_types-intfield.adb │ ├── terminal_interface-curses-forms-field_types-intfield.ads │ ├── terminal_interface-curses-forms-field_types-ipv4_address.adb │ ├── terminal_interface-curses-forms-field_types-ipv4_address.ads │ ├── terminal_interface-curses-forms-field_types-numeric.adb │ ├── terminal_interface-curses-forms-field_types-numeric.ads │ ├── terminal_interface-curses-forms-field_types-regexp.adb │ ├── terminal_interface-curses-forms-field_types-regexp.ads │ ├── terminal_interface-curses-forms-field_types-user-choice.adb │ ├── terminal_interface-curses-forms-field_types-user-choice.ads │ ├── terminal_interface-curses-forms-field_types-user.adb │ ├── terminal_interface-curses-forms-field_types-user.ads │ ├── terminal_interface-curses-forms-field_types.adb │ ├── terminal_interface-curses-forms-field_user_data.adb │ ├── terminal_interface-curses-forms-form_user_data.adb │ ├── terminal_interface-curses-forms.adb │ ├── terminal_interface-curses-menus-item_user_data.adb │ ├── terminal_interface-curses-menus-menu_user_data.adb │ ├── terminal_interface-curses-menus.adb │ ├── terminal_interface-curses-mouse.adb │ ├── terminal_interface-curses-panels-user_data.adb │ ├── terminal_interface-curses-panels.adb │ ├── terminal_interface-curses-putwin.adb │ ├── terminal_interface-curses-putwin.ads │ ├── terminal_interface-curses-termcap.adb │ ├── terminal_interface-curses-termcap.ads │ ├── terminal_interface-curses-terminfo.adb │ ├── terminal_interface-curses-terminfo.ads │ ├── terminal_interface-curses-text_io-aux.adb │ ├── terminal_interface-curses-text_io-aux.ads │ ├── terminal_interface-curses-text_io-complex_io.adb │ ├── terminal_interface-curses-text_io-complex_io.ads │ ├── terminal_interface-curses-text_io-decimal_io.adb │ ├── terminal_interface-curses-text_io-decimal_io.ads │ ├── terminal_interface-curses-text_io-enumeration_io.adb │ ├── terminal_interface-curses-text_io-enumeration_io.ads │ ├── terminal_interface-curses-text_io-fixed_io.adb │ ├── terminal_interface-curses-text_io-fixed_io.ads │ ├── terminal_interface-curses-text_io-float_io.adb │ ├── terminal_interface-curses-text_io-float_io.ads │ ├── terminal_interface-curses-text_io-integer_io.adb │ ├── terminal_interface-curses-text_io-integer_io.ads │ ├── terminal_interface-curses-text_io-modular_io.adb │ ├── terminal_interface-curses-text_io-modular_io.ads │ ├── terminal_interface-curses-text_io.adb │ ├── terminal_interface-curses-text_io.ads │ ├── terminal_interface-curses-trace.adb_p │ └── terminal_interface.ads ├── Android.mk ├── COPYING ├── INSTALL ├── MANIFEST ├── Makefile ├── Makefile.in ├── Makefile.os2 ├── NEWS ├── README ├── README.MinGW ├── README.emx ├── TO-DO ├── VERSION ├── aclocal.m4 ├── announce.html.in ├── c++ ├── Makefile.in ├── NEWS ├── PROBLEMS ├── README-first ├── cursesapp.cc ├── cursesapp.h ├── cursesf.cc ├── cursesf.h ├── cursesm.cc ├── cursesm.h ├── cursesmain.cc ├── cursesp.cc ├── cursesp.h ├── cursespad.cc ├── cursesw.cc ├── cursesw.h ├── cursslk.cc ├── cursslk.h ├── demo.cc ├── edit_cfg.sh ├── etip.h.in ├── headers ├── internal.h └── modules ├── config.sub ├── configure ├── configure.in ├── convert_configure.pl ├── dist.mk ├── doc ├── hackguide.doc ├── html │ ├── Ada95.html │ ├── NCURSES-Programming-HOWTO.html │ ├── ada │ │ ├── files.htm │ │ ├── files │ │ │ └── T.htm │ │ ├── funcs.htm │ │ ├── funcs │ │ │ ├── A.htm │ │ │ ├── B.htm │ │ │ ├── C.htm │ │ │ ├── D.htm │ │ │ ├── E.htm │ │ │ ├── F.htm │ │ │ ├── G.htm │ │ │ ├── H.htm │ │ │ ├── I.htm │ │ │ ├── K.htm │ │ │ ├── L.htm │ │ │ ├── M.htm │ │ │ ├── N.htm │ │ │ ├── O.htm │ │ │ ├── P.htm │ │ │ ├── Q.htm │ │ │ ├── R.htm │ │ │ ├── S.htm │ │ │ ├── T.htm │ │ │ ├── U.htm │ │ │ ├── V.htm │ │ │ └── W.htm │ │ ├── index.htm │ │ ├── main.htm │ │ ├── table.html │ │ ├── terminal_interface-curses-aux__adb.htm │ │ ├── terminal_interface-curses-aux__ads.htm │ │ ├── terminal_interface-curses-forms-field_types-alpha__adb.htm │ │ ├── terminal_interface-curses-forms-field_types-alpha__ads.htm │ │ ├── terminal_interface-curses-forms-field_types-alphanumeric__adb.htm │ │ ├── terminal_interface-curses-forms-field_types-alphanumeric__ads.htm │ │ ├── terminal_interface-curses-forms-field_types-enumeration-ada__adb.htm │ │ ├── terminal_interface-curses-forms-field_types-enumeration-ada__ads.htm │ │ ├── terminal_interface-curses-forms-field_types-enumeration__adb.htm │ │ ├── terminal_interface-curses-forms-field_types-enumeration__ads.htm │ │ ├── terminal_interface-curses-forms-field_types-intfield__adb.htm │ │ ├── terminal_interface-curses-forms-field_types-intfield__ads.htm │ │ ├── terminal_interface-curses-forms-field_types-ipv4_address__adb.htm │ │ ├── terminal_interface-curses-forms-field_types-ipv4_address__ads.htm │ │ ├── terminal_interface-curses-forms-field_types-numeric__adb.htm │ │ ├── terminal_interface-curses-forms-field_types-numeric__ads.htm │ │ ├── terminal_interface-curses-forms-field_types-regexp__adb.htm │ │ ├── terminal_interface-curses-forms-field_types-regexp__ads.htm │ │ ├── terminal_interface-curses-forms-field_types-user-choice__adb.htm │ │ ├── terminal_interface-curses-forms-field_types-user-choice__ads.htm │ │ ├── terminal_interface-curses-forms-field_types-user__adb.htm │ │ ├── terminal_interface-curses-forms-field_types-user__ads.htm │ │ ├── terminal_interface-curses-forms-field_types__adb.htm │ │ ├── terminal_interface-curses-forms-field_types__ads.htm │ │ ├── terminal_interface-curses-forms-field_user_data__adb.htm │ │ ├── terminal_interface-curses-forms-field_user_data__ads.htm │ │ ├── terminal_interface-curses-forms-form_user_data__adb.htm │ │ ├── terminal_interface-curses-forms-form_user_data__ads.htm │ │ ├── terminal_interface-curses-forms__adb.htm │ │ ├── terminal_interface-curses-forms__ads.htm │ │ ├── terminal_interface-curses-menus-item_user_data__adb.htm │ │ ├── terminal_interface-curses-menus-item_user_data__ads.htm │ │ ├── terminal_interface-curses-menus-menu_user_data__adb.htm │ │ ├── terminal_interface-curses-menus-menu_user_data__ads.htm │ │ ├── terminal_interface-curses-menus__adb.htm │ │ ├── terminal_interface-curses-menus__ads.htm │ │ ├── terminal_interface-curses-mouse__adb.htm │ │ ├── terminal_interface-curses-mouse__ads.htm │ │ ├── terminal_interface-curses-panels-user_data__adb.htm │ │ ├── terminal_interface-curses-panels-user_data__ads.htm │ │ ├── terminal_interface-curses-panels__adb.htm │ │ ├── terminal_interface-curses-panels__ads.htm │ │ ├── terminal_interface-curses-putwin__adb.htm │ │ ├── terminal_interface-curses-putwin__ads.htm │ │ ├── terminal_interface-curses-termcap__adb.htm │ │ ├── terminal_interface-curses-termcap__ads.htm │ │ ├── terminal_interface-curses-terminfo__adb.htm │ │ ├── terminal_interface-curses-terminfo__ads.htm │ │ ├── terminal_interface-curses-text_io-aux__adb.htm │ │ ├── terminal_interface-curses-text_io-aux__ads.htm │ │ ├── terminal_interface-curses-text_io-complex_io__adb.htm │ │ ├── terminal_interface-curses-text_io-complex_io__ads.htm │ │ ├── terminal_interface-curses-text_io-decimal_io__adb.htm │ │ ├── terminal_interface-curses-text_io-decimal_io__ads.htm │ │ ├── terminal_interface-curses-text_io-enumeration_io__adb.htm │ │ ├── terminal_interface-curses-text_io-enumeration_io__ads.htm │ │ ├── terminal_interface-curses-text_io-fixed_io__adb.htm │ │ ├── terminal_interface-curses-text_io-fixed_io__ads.htm │ │ ├── terminal_interface-curses-text_io-float_io__adb.htm │ │ ├── terminal_interface-curses-text_io-float_io__ads.htm │ │ ├── terminal_interface-curses-text_io-integer_io__adb.htm │ │ ├── terminal_interface-curses-text_io-integer_io__ads.htm │ │ ├── terminal_interface-curses-text_io-modular_io__adb.htm │ │ ├── terminal_interface-curses-text_io-modular_io__ads.htm │ │ ├── terminal_interface-curses-text_io__adb.htm │ │ ├── terminal_interface-curses-text_io__ads.htm │ │ ├── terminal_interface-curses-trace__adb.htm │ │ ├── terminal_interface-curses-trace__ads.htm │ │ ├── terminal_interface-curses__adb.htm │ │ ├── terminal_interface-curses__ads.htm │ │ ├── terminal_interface-curses_constants__ads.htm │ │ └── terminal_interface__ads.htm │ ├── announce.html │ ├── hackguide.html │ ├── index.html │ ├── man │ │ ├── adacurses-config.1.html │ │ ├── captoinfo.1m.html │ │ ├── clear.1.html │ │ ├── curs_add_wch.3x.html │ │ ├── curs_add_wchstr.3x.html │ │ ├── curs_addch.3x.html │ │ ├── curs_addchstr.3x.html │ │ ├── curs_addstr.3x.html │ │ ├── curs_addwstr.3x.html │ │ ├── curs_attr.3x.html │ │ ├── curs_beep.3x.html │ │ ├── curs_bkgd.3x.html │ │ ├── curs_bkgrnd.3x.html │ │ ├── curs_border.3x.html │ │ ├── curs_border_set.3x.html │ │ ├── curs_clear.3x.html │ │ ├── curs_color.3x.html │ │ ├── curs_delch.3x.html │ │ ├── curs_deleteln.3x.html │ │ ├── curs_extend.3x.html │ │ ├── curs_get_wch.3x.html │ │ ├── curs_get_wstr.3x.html │ │ ├── curs_getcchar.3x.html │ │ ├── curs_getch.3x.html │ │ ├── curs_getstr.3x.html │ │ ├── curs_getyx.3x.html │ │ ├── curs_in_wch.3x.html │ │ ├── curs_in_wchstr.3x.html │ │ ├── curs_inch.3x.html │ │ ├── curs_inchstr.3x.html │ │ ├── curs_initscr.3x.html │ │ ├── curs_inopts.3x.html │ │ ├── curs_ins_wch.3x.html │ │ ├── curs_ins_wstr.3x.html │ │ ├── curs_insch.3x.html │ │ ├── curs_insstr.3x.html │ │ ├── curs_instr.3x.html │ │ ├── curs_inwstr.3x.html │ │ ├── curs_kernel.3x.html │ │ ├── curs_legacy.3x.html │ │ ├── curs_memleaks.3x.html │ │ ├── curs_mouse.3x.html │ │ ├── curs_move.3x.html │ │ ├── curs_opaque.3x.html │ │ ├── curs_outopts.3x.html │ │ ├── curs_overlay.3x.html │ │ ├── curs_pad.3x.html │ │ ├── curs_print.3x.html │ │ ├── curs_printw.3x.html │ │ ├── curs_refresh.3x.html │ │ ├── curs_scanw.3x.html │ │ ├── curs_scr_dump.3x.html │ │ ├── curs_scroll.3x.html │ │ ├── curs_slk.3x.html │ │ ├── curs_sp_funcs.3x.html │ │ ├── curs_termattrs.3x.html │ │ ├── curs_termcap.3x.html │ │ ├── curs_terminfo.3x.html │ │ ├── curs_threads.3x.html │ │ ├── curs_touch.3x.html │ │ ├── curs_trace.3x.html │ │ ├── curs_util.3x.html │ │ ├── curs_variables.3x.html │ │ ├── curs_window.3x.html │ │ ├── default_colors.3x.html │ │ ├── define_key.3x.html │ │ ├── form.3x.html │ │ ├── form_cursor.3x.html │ │ ├── form_data.3x.html │ │ ├── form_driver.3x.html │ │ ├── form_field.3x.html │ │ ├── form_field_attributes.3x.html │ │ ├── form_field_buffer.3x.html │ │ ├── form_field_info.3x.html │ │ ├── form_field_just.3x.html │ │ ├── form_field_new.3x.html │ │ ├── form_field_opts.3x.html │ │ ├── form_field_userptr.3x.html │ │ ├── form_field_validation.3x.html │ │ ├── form_fieldtype.3x.html │ │ ├── form_hook.3x.html │ │ ├── form_new.3x.html │ │ ├── form_new_page.3x.html │ │ ├── form_opts.3x.html │ │ ├── form_page.3x.html │ │ ├── form_post.3x.html │ │ ├── form_requestname.3x.html │ │ ├── form_userptr.3x.html │ │ ├── form_variables.3x.html │ │ ├── form_win.3x.html │ │ ├── index.html │ │ ├── infocmp.1m.html │ │ ├── infotocap.1m.html │ │ ├── key_defined.3x.html │ │ ├── keybound.3x.html │ │ ├── keyok.3x.html │ │ ├── legacy_coding.3x.html │ │ ├── menu.3x.html │ │ ├── menu_attributes.3x.html │ │ ├── menu_cursor.3x.html │ │ ├── menu_driver.3x.html │ │ ├── menu_format.3x.html │ │ ├── menu_hook.3x.html │ │ ├── menu_items.3x.html │ │ ├── menu_mark.3x.html │ │ ├── menu_new.3x.html │ │ ├── menu_opts.3x.html │ │ ├── menu_pattern.3x.html │ │ ├── menu_post.3x.html │ │ ├── menu_requestname.3x.html │ │ ├── menu_spacing.3x.html │ │ ├── menu_userptr.3x.html │ │ ├── menu_win.3x.html │ │ ├── mitem_current.3x.html │ │ ├── mitem_name.3x.html │ │ ├── mitem_new.3x.html │ │ ├── mitem_opts.3x.html │ │ ├── mitem_userptr.3x.html │ │ ├── mitem_value.3x.html │ │ ├── mitem_visible.3x.html │ │ ├── ncurses.3x.html │ │ ├── ncurses5-config.1.html │ │ ├── panel.3x.html │ │ ├── resizeterm.3x.html │ │ ├── tabs.1.html │ │ ├── term.5.html │ │ ├── term.7.html │ │ ├── term_variables.3x.html │ │ ├── terminfo.5.html │ │ ├── tic.1m.html │ │ ├── toe.1m.html │ │ ├── tput.1.html │ │ ├── tset.1.html │ │ └── wresize.3x.html │ └── ncurses-intro.html └── ncurses-intro.doc ├── edit_man.sed ├── edit_man.sh ├── form ├── Makefile ├── Makefile.in ├── READ.ME ├── f_trace.c ├── fld_arg.c ├── fld_attr.c ├── fld_current.c ├── fld_def.c ├── fld_dup.c ├── fld_ftchoice.c ├── fld_ftlink.c ├── fld_info.c ├── fld_just.c ├── fld_link.c ├── fld_max.c ├── fld_move.c ├── fld_newftyp.c ├── fld_opts.c ├── fld_pad.c ├── fld_page.c ├── fld_stat.c ├── fld_type.c ├── fld_user.c ├── form.h ├── form.priv.h ├── frm_cursor.c ├── frm_data.c ├── frm_def.c ├── frm_driver.c ├── frm_hook.c ├── frm_opts.c ├── frm_page.c ├── frm_post.c ├── frm_req_name.c ├── frm_scale.c ├── frm_sub.c ├── frm_user.c ├── frm_win.c ├── fty_alnum.c ├── fty_alpha.c ├── fty_enum.c ├── fty_generic.c ├── fty_int.c ├── fty_ipv4.c ├── fty_num.c ├── fty_regex.c ├── headers ├── llib-lform ├── llib-lformt ├── llib-lformtw ├── llib-lformw └── modules ├── headers.sh ├── include ├── Caps ├── Caps.aix4 ├── Caps.hpux11 ├── Caps.keys ├── Caps.osf1r5 ├── Caps.uwin ├── MKhashsize.sh ├── MKkey_defs.sh ├── MKncurses_def.sh ├── MKparametrized.sh ├── MKterm.h.awk ├── MKterm.h.awk.in ├── Makefile ├── Makefile.in ├── capdefaults.c ├── config.h ├── curses.h ├── curses.h.in ├── curses.head ├── curses.tail ├── curses.wide ├── edit_cfg.sh ├── eti.h ├── form.h ├── hashed_db.h ├── hashsize.h ├── headers ├── menu.h ├── mf_common.h ├── nc_alloc.h ├── nc_mingw.h ├── nc_panel.h ├── nc_string.h ├── nc_termios.h ├── nc_tparm.h ├── ncurses.h ├── ncurses_cfg.h ├── ncurses_cfg.hin ├── ncurses_def.h ├── ncurses_defs ├── ncurses_dll.h ├── ncurses_dll.h.in ├── ncurses_mingw.h ├── panel.h ├── parametrized.h ├── term.h ├── term_entry.h ├── termcap.h ├── termcap.h.in ├── tic.h ├── unctrl.h └── unctrl.h.in ├── install-sh ├── lib ├── libform.a ├── libform_g.a ├── libmenu.a ├── libmenu_g.a ├── libncurses.a ├── libncurses_g.a ├── libpanel.a ├── libpanel_g.a └── terminfo │ ├── 1 │ ├── 1178 │ └── 1730-lm │ ├── 2 │ ├── 2621 │ ├── 2621-wl │ ├── 2621A │ └── 2621a │ ├── 3 │ ├── 386at │ └── 3b1 │ ├── 4 │ ├── 4025ex │ ├── 4027ex │ └── 4410-w │ ├── 5 │ ├── 5051 │ ├── 5620 │ ├── 5410-w │ ├── 5630-24 │ └── 5630DMD-24 │ ├── 6 │ ├── 6053 │ ├── 6053-dg │ ├── 605x │ ├── 605x-dg │ ├── 630-lm │ └── 630MTG-24 │ ├── 7 │ ├── 730MTG-24 │ ├── 730MTG-41 │ ├── 730MTG-41r │ ├── 730MTGr │ └── 730MTGr-24 │ ├── 8 │ └── 8510 │ ├── 9 │ ├── 955-hb │ ├── 955-w │ └── 9term │ ├── A │ └── Apple_Terminal │ ├── E │ ├── Eterm │ ├── Eterm-256color │ ├── Eterm-88color │ └── Eterm-color │ ├── L │ └── LFT-PC850 │ ├── M │ ├── MtxOrb │ ├── MtxOrb162 │ └── MtxOrb204 │ ├── N │ ├── NCR260VT300WPP │ └── NCRVT100WPP │ ├── P │ ├── P12 │ ├── P12-M │ ├── P12-M-W │ ├── P12-W │ ├── P14 │ ├── P14-M │ ├── P14-M-W │ ├── P14-W │ ├── P4 │ ├── P5 │ ├── P7 │ ├── P8 │ ├── P8-W │ ├── P9 │ ├── P9-8 │ ├── P9-8-W │ └── P9-W │ ├── Q │ ├── Q306-8-pc │ ├── Q310-vip-H │ ├── Q310-vip-H-am │ ├── Q310-vip-Hw │ ├── Q310-vip-w │ └── Q310-vip-w-am │ ├── X │ └── X-hpterm │ ├── a │ ├── a210 │ ├── a80 │ ├── a980 │ ├── aa4080 │ ├── aaa │ ├── aaa+dec │ ├── aaa+rv │ ├── aaa+unk │ ├── aaa-18 │ ├── aaa-18-rv │ ├── aaa-20 │ ├── aaa-22 │ ├── aaa-24 │ ├── aaa-24-rv │ ├── aaa-26 │ ├── aaa-28 │ ├── aaa-30 │ ├── aaa-30-ctxt │ ├── aaa-30-rv │ ├── aaa-30-rv-ctxt │ ├── aaa-30-s │ ├── aaa-30-s-ctxt │ ├── aaa-30-s-rv │ ├── aaa-30-s-rv-ct │ ├── aaa-36 │ ├── aaa-36-rv │ ├── aaa-40 │ ├── aaa-40-rv │ ├── aaa-48 │ ├── aaa-48-rv │ ├── aaa-60 │ ├── aaa-60-dec-rv │ ├── aaa-60-rv │ ├── aaa-60-s │ ├── aaa-60-s-rv │ ├── aaa-ctxt │ ├── aaa-db │ ├── aaa-rv │ ├── aaa-rv-ctxt │ ├── aaa-rv-unk │ ├── aaa-s │ ├── aaa-s-ctxt │ ├── aaa-s-rv │ ├── aaa-s-rv-ctxt │ ├── aaa-unk │ ├── aas1901 │ ├── abm80 │ ├── abm85 │ ├── abm85e │ ├── abm85h │ ├── abm85h-old │ ├── act4 │ ├── act5 │ ├── addrinfo │ ├── adds980 │ ├── addsviewpoint │ ├── addsvp60 │ ├── adm+sgr │ ├── adm1 │ ├── adm11 │ ├── adm1178 │ ├── adm12 │ ├── adm1a │ ├── adm2 │ ├── adm20 │ ├── adm21 │ ├── adm22 │ ├── adm3 │ ├── adm31 │ ├── adm31-old │ ├── adm36 │ ├── adm3a │ ├── adm3a+ │ ├── adm42 │ ├── adm42-ns │ ├── adm5 │ ├── aepro │ ├── aixterm │ ├── aixterm-16color │ ├── aixterm-m │ ├── aixterm-m-old │ ├── aj │ ├── aj510 │ ├── aj830 │ ├── aj832 │ ├── alt2 │ ├── alt3 │ ├── alt4 │ ├── alt5 │ ├── alt7 │ ├── alt7pc │ ├── alto-h19 │ ├── alto-heath │ ├── altoh19 │ ├── altoheath │ ├── altos-2 │ ├── altos-3 │ ├── altos-4 │ ├── altos-5 │ ├── altos2 │ ├── altos3 │ ├── altos4 │ ├── altos5 │ ├── altos7 │ ├── altos7pc │ ├── ambas │ ├── ambassador │ ├── amiga │ ├── amiga-8bit │ ├── amiga-h │ ├── amiga-vnc │ ├── amp219 │ ├── amp219w │ ├── ampex-219 │ ├── ampex-219w │ ├── ampex-232 │ ├── ampex175 │ ├── ampex175-b │ ├── ampex210 │ ├── ampex219 │ ├── ampex219w │ ├── ampex232 │ ├── ampex232w │ ├── ampex80 │ ├── annarbor4080 │ ├── ansi │ ├── ansi+arrows │ ├── ansi+csr │ ├── ansi+cup │ ├── ansi+enq │ ├── ansi+erase │ ├── ansi+idc │ ├── ansi+idl │ ├── ansi+idl1 │ ├── ansi+inittabs │ ├── ansi+local │ ├── ansi+local1 │ ├── ansi+pp │ ├── ansi+rca │ ├── ansi+rep │ ├── ansi+sgr │ ├── ansi+sgrbold │ ├── ansi+sgrdim │ ├── ansi+sgrso │ ├── ansi+sgrul │ ├── ansi+tabs │ ├── ansi-color-2-emx │ ├── ansi-color-3-emx │ ├── ansi-emx │ ├── ansi-generic │ ├── ansi-m │ ├── ansi-mini │ ├── ansi-mono │ ├── ansi-mr │ ├── ansi-mtabs │ ├── ansi-nt │ ├── ansi.sys │ ├── ansi.sys-old │ ├── ansi.sysk │ ├── ansi43m │ ├── ansi77 │ ├── ansi80x25 │ ├── ansi80x25-mono │ ├── ansi80x25-raw │ ├── ansi80x30 │ ├── ansi80x30-mono │ ├── ansi80x43 │ ├── ansi80x43-mono │ ├── ansi80x50 │ ├── ansi80x50-mono │ ├── ansi80x60 │ ├── ansi80x60-mono │ ├── ansil │ ├── ansil-mono │ ├── ansis │ ├── ansis-mono │ ├── ansisysk │ ├── ansiw │ ├── ap-vm80 │ ├── apl │ ├── apollo │ ├── apollo_15P │ ├── apollo_19L │ ├── apollo_color │ ├── apple-80 │ ├── apple-ae │ ├── apple-soroc │ ├── apple-uterm │ ├── apple-uterm-vb │ ├── apple-videx │ ├── apple-videx2 │ ├── apple-videx3 │ ├── apple-vm80 │ ├── apple2e │ ├── apple2e-p │ ├── apple80p │ ├── appleII │ ├── appleIIc │ ├── appleIIe │ ├── appleIIgs │ ├── arm100 │ ├── arm100-am │ ├── arm100-w │ ├── arm100-wam │ ├── at │ ├── at-color │ ├── at-m │ ├── at386 │ ├── atari │ ├── atari-color │ ├── atari-m │ ├── atari-old │ ├── atari_st │ ├── atari_st-color │ ├── atarist-m │ ├── aterm │ ├── att2300 │ ├── att2350 │ ├── att4410 │ ├── att4410-w │ ├── att4410v1 │ ├── att4410v1-w │ ├── att4415 │ ├── att4415+nl │ ├── att4415-nl │ ├── att4415-rv │ ├── att4415-rv-nl │ ├── att4415-w │ ├── att4415-w-nl │ ├── att4415-w-rv │ ├── att4415-w-rv-n │ ├── att4418 │ ├── att4418-w │ ├── att4420 │ ├── att4424 │ ├── att4424-1 │ ├── att4424m │ ├── att4425 │ ├── att4425-nl │ ├── att4425-w │ ├── att4426 │ ├── att500 │ ├── att505 │ ├── att505-24 │ ├── att510a │ ├── att510d │ ├── att513 │ ├── att5310 │ ├── att5320 │ ├── att5410 │ ├── att5410-w │ ├── att5410v1 │ ├── att5410v1-w │ ├── att5418 │ ├── att5418-w │ ├── att5420 │ ├── att5420+nl │ ├── att5420-nl │ ├── att5420-rv │ ├── att5420-rv-nl │ ├── att5420-w │ ├── att5420-w-nl │ ├── att5420-w-rv │ ├── att5420-w-rv-n │ ├── att5420_2 │ ├── att5420_2-w │ ├── att5425 │ ├── att5425-nl │ ├── att5425-w │ ├── att5430 │ ├── att5620 │ ├── att5620-1 │ ├── att5620-24 │ ├── att5620-34 │ ├── att5620-s │ ├── att605 │ ├── att605-pc │ ├── att605-w │ ├── att610 │ ├── att610-103k │ ├── att610-103k-w │ ├── att610-w │ ├── att615 │ ├── att615-103k │ ├── att615-103k-w │ ├── att615-w │ ├── att620 │ ├── att620-103k │ ├── att620-103k-w │ ├── att620-w │ ├── att630 │ ├── att630-24 │ ├── att6386 │ ├── att700 │ ├── att730 │ ├── att730-24 │ ├── att730-41 │ ├── att7300 │ ├── att730r │ ├── att730r-24 │ ├── att730r-41 │ ├── avatar │ ├── avatar0 │ ├── avatar0+ │ ├── avatar1 │ ├── avt │ ├── avt+s │ ├── avt-ns │ ├── avt-rv │ ├── avt-rv-ns │ ├── avt-rv-s │ ├── avt-s │ ├── avt-w │ ├── avt-w-ns │ ├── avt-w-rv │ ├── avt-w-rv-ns │ ├── avt-w-rv-s │ ├── avt-w-s │ ├── aws │ └── awsc │ ├── b │ ├── b-128 │ ├── bantam │ ├── basic4 │ ├── basis │ ├── bct510a │ ├── bct510d │ ├── beacon │ ├── bee │ ├── beehive │ ├── beehive3 │ ├── beehive4 │ ├── beehiveIIIm │ ├── beterm │ ├── bg1.25 │ ├── bg1.25nv │ ├── bg1.25rv │ ├── bg2.0 │ ├── bg2.0nv │ ├── bg2.0rv │ ├── bg3.10 │ ├── bg3.10nv │ ├── bg3.10rv │ ├── bh3m │ ├── bh4 │ ├── bitgraph │ ├── blit │ ├── bobcat │ ├── bq300 │ ├── bq300-8 │ ├── bq300-8-pc │ ├── bq300-8-pc-rv │ ├── bq300-8-pc-w │ ├── bq300-8-pc-w-rv │ ├── bq300-8rv │ ├── bq300-8w │ ├── bq300-pc │ ├── bq300-pc-rv │ ├── bq300-pc-w │ ├── bq300-pc-w-rv │ ├── bq300-rv │ ├── bq300-w │ ├── bq300-w-8rv │ ├── bq300-w-rv │ ├── bsdos-pc │ ├── bsdos-pc-m │ ├── bsdos-pc-mono │ ├── bsdos-pc-nobold │ ├── bsdos-ppc │ ├── bsdos-sparc │ └── bterm │ ├── c │ ├── c100 │ ├── c100-1p │ ├── c100-4p │ ├── c100-rv │ ├── c100-rv-4p │ ├── c104 │ ├── c108 │ ├── c108-4p │ ├── c108-8p │ ├── c108-rv │ ├── c108-rv-4p │ ├── c108-rv-8p │ ├── c108-w │ ├── c108-w-8p │ ├── c300 │ ├── c301 │ ├── c321 │ ├── ca22851 │ ├── cad68-2 │ ├── cad68-3 │ ├── cbblit │ ├── cbunix │ ├── cci │ ├── cci1 │ ├── cdc456 │ ├── cdc721 │ ├── cdc721-esc │ ├── cdc721ll │ ├── cdc752 │ ├── cdc756 │ ├── cg7900 │ ├── cgc2 │ ├── cgc3 │ ├── chromatics │ ├── ci8510 │ ├── cit-80 │ ├── cit101 │ ├── cit101e │ ├── cit101e-132 │ ├── cit101e-n │ ├── cit101e-n132 │ ├── cit101e-rv │ ├── cit500 │ ├── cit80 │ ├── citc │ ├── citoh │ ├── citoh-6lpi │ ├── citoh-8lpi │ ├── citoh-comp │ ├── citoh-elite │ ├── citoh-pica │ ├── citoh-prop │ ├── citoh-ps │ ├── coco3 │ ├── coherent │ ├── color_xterm │ ├── colorscan │ ├── commodore │ ├── concept │ ├── concept-avt │ ├── concept100 │ ├── concept100-rv │ ├── concept108 │ ├── concept108-4p │ ├── concept108-8p │ ├── concept108-w-8 │ ├── concept108-w8p │ ├── concept108rv4p │ ├── cons25 │ ├── cons25-debian │ ├── cons25-iso-m │ ├── cons25-iso8859 │ ├── cons25-koi8-r │ ├── cons25-koi8r-m │ ├── cons25-m │ ├── cons25l1 │ ├── cons25l1-m │ ├── cons25r │ ├── cons25r-m │ ├── cons25w │ ├── cons30 │ ├── cons30-m │ ├── cons43 │ ├── cons43-m │ ├── cons50 │ ├── cons50-iso-m │ ├── cons50-iso8859 │ ├── cons50-koi8r │ ├── cons50-koi8r-m │ ├── cons50-m │ ├── cons50l1 │ ├── cons50l1-m │ ├── cons50r │ ├── cons50r-m │ ├── cons60 │ ├── cons60-iso │ ├── cons60-iso-m │ ├── cons60-koi8r │ ├── cons60-koi8r-m │ ├── cons60-m │ ├── cons60l1 │ ├── cons60l1-m │ ├── cons60r │ ├── cons60r-m │ ├── contel300 │ ├── contel301 │ ├── contel320 │ ├── contel321 │ ├── cops │ ├── cops-10 │ ├── cops10 │ ├── crt │ ├── crt-vt220 │ ├── cs10 │ ├── cs10-w │ ├── ct82 │ ├── ct8500 │ ├── ctrm │ ├── cx │ ├── cx100 │ ├── cyb110 │ ├── cyb83 │ ├── cygwin │ ├── cygwinB19 │ └── cygwinDBG │ ├── d │ ├── d132 │ ├── d2 │ ├── d2-dg │ ├── d200 │ ├── d200-dg │ ├── d210 │ ├── d210-dg │ ├── d211 │ ├── d211-7b │ ├── d211-dg │ ├── d214 │ ├── d214-dg │ ├── d215 │ ├── d215-7b │ ├── d215-dg │ ├── d216+ │ ├── d216+25 │ ├── d216+dg │ ├── d216-dg │ ├── d216-unix │ ├── d216-unix-25 │ ├── d216e+ │ ├── d216e+dg │ ├── d216e-dg │ ├── d216e-unix │ ├── d217-dg │ ├── d217-unix │ ├── d217-unix-25 │ ├── d220 │ ├── d220-7b │ ├── d220-dg │ ├── d230 │ ├── d230-dg │ ├── d230c │ ├── d230c-dg │ ├── d400 │ ├── d400-dg │ ├── d410 │ ├── d410-7b │ ├── d410-7b-w │ ├── d410-dg │ ├── d410-w │ ├── d411 │ ├── d411-7b │ ├── d411-7b-w │ ├── d411-dg │ ├── d411-w │ ├── d412+ │ ├── d412+25 │ ├── d412+dg │ ├── d412+s │ ├── d412+sr │ ├── d412+w │ ├── d412-dg │ ├── d412-unix │ ├── d412-unix-25 │ ├── d412-unix-s │ ├── d412-unix-sr │ ├── d412-unix-w │ ├── d413-dg │ ├── d413-unix │ ├── d413-unix-25 │ ├── d413-unix-s │ ├── d413-unix-sr │ ├── d413-unix-w │ ├── d414-unix │ ├── d414-unix-25 │ ├── d414-unix-s │ ├── d414-unix-sr │ ├── d414-unix-w │ ├── d430-dg │ ├── d430-dg-ccc │ ├── d430-unix │ ├── d430-unix-25 │ ├── d430-unix-25-ccc │ ├── d430-unix-ccc │ ├── d430-unix-s │ ├── d430-unix-s-ccc │ ├── d430-unix-sr │ ├── d430-unix-sr-ccc │ ├── d430-unix-w │ ├── d430-unix-w-ccc │ ├── d430c-dg │ ├── d430c-dg-ccc │ ├── d430c-unix │ ├── d430c-unix-25 │ ├── d430c-unix-25-ccc │ ├── d430c-unix-ccc │ ├── d430c-unix-s │ ├── d430c-unix-s-ccc │ ├── d430c-unix-sr │ ├── d430c-unix-sr-ccc │ ├── d430c-unix-w │ ├── d430c-unix-w-ccc │ ├── d450 │ ├── d450-dg │ ├── d460 │ ├── d460-7b │ ├── d460-7b-w │ ├── d460-dg │ ├── d460-w │ ├── d461 │ ├── d461-7b │ ├── d461-7b-w │ ├── d461-dg │ ├── d461-w │ ├── d462+ │ ├── d462+25 │ ├── d462+dg │ ├── d462+s │ ├── d462+sr │ ├── d462+w │ ├── d462-dg │ ├── d462-unix │ ├── d462-unix-25 │ ├── d462-unix-s │ ├── d462-unix-sr │ ├── d462-unix-w │ ├── d462e-dg │ ├── d463-dg │ ├── d463-unix │ ├── d463-unix-25 │ ├── d463-unix-s │ ├── d463-unix-sr │ ├── d463-unix-w │ ├── d464-unix │ ├── d464-unix-25 │ ├── d464-unix-s │ ├── d464-unix-sr │ ├── d464-unix-w │ ├── d470 │ ├── d470-7b │ ├── d470-dg │ ├── d470c │ ├── d470c-7b │ ├── d470c-dg │ ├── d555 │ ├── d555-7b │ ├── d555-7b-w │ ├── d555-dg │ ├── d555-w │ ├── d577 │ ├── d577-7b │ ├── d577-7b-w │ ├── d577-dg │ ├── d577-w │ ├── d578 │ ├── d578-7b │ ├── d578-dg │ ├── d80 │ ├── d800 │ ├── darwin │ ├── darwin-100x37 │ ├── darwin-100x37-m │ ├── darwin-112x37 │ ├── darwin-112x37-m │ ├── darwin-128x40 │ ├── darwin-128x40-m │ ├── darwin-128x48 │ ├── darwin-128x48-m │ ├── darwin-144x48 │ ├── darwin-144x48-m │ ├── darwin-160x64 │ ├── darwin-160x64-m │ ├── darwin-200x64 │ ├── darwin-200x64-m │ ├── darwin-200x75 │ ├── darwin-200x75-m │ ├── darwin-256x96 │ ├── darwin-256x96-m │ ├── darwin-80x25 │ ├── darwin-80x25-m │ ├── darwin-80x30 │ ├── darwin-80x30-m │ ├── darwin-90x30 │ ├── darwin-90x30-m │ ├── darwin-b │ ├── darwin-f │ ├── darwin-f2 │ ├── darwin-m │ ├── darwin-m-b │ ├── darwin-m-f │ ├── darwin-m-f2 │ ├── datagraphix │ ├── datamedia2500 │ ├── datapoint │ ├── dataspeed40 │ ├── dd5000 │ ├── ddr │ ├── ddr3180 │ ├── dec+pp │ ├── dec+sl │ ├── dec-vt100 │ ├── dec-vt220 │ ├── dec-vt330 │ ├── dec-vt340 │ ├── dec-vt400 │ ├── decansi │ ├── decpro │ ├── decwriter │ ├── delta │ ├── dg+ccc │ ├── dg+color │ ├── dg+color8 │ ├── dg+fixed │ ├── dg-ansi │ ├── dg-generic │ ├── dg100 │ ├── dg200 │ ├── dg210 │ ├── dg211 │ ├── dg450 │ ├── dg460-ansi │ ├── dg6053 │ ├── dg6053-old │ ├── dg605x │ ├── dg6134 │ ├── dgkeys+11 │ ├── dgkeys+15 │ ├── dgkeys+7b │ ├── dgkeys+8b │ ├── dgmode+color │ ├── dgmode+color8 │ ├── dgunix+ccc │ ├── dgunix+fixed │ ├── diablo │ ├── diablo-lm │ ├── diablo1620 │ ├── diablo1620-m8 │ ├── diablo1640 │ ├── diablo1640-lm │ ├── diablo1640-m8 │ ├── diablo1720 │ ├── diablo1730 │ ├── diablo1740 │ ├── diablo1740-lm │ ├── diablo450 │ ├── diablo630 │ ├── dialogue │ ├── dialogue80 │ ├── digilog │ ├── djgpp │ ├── djgpp203 │ ├── djgpp204 │ ├── dku7003 │ ├── dku7003-dumb │ ├── dku7102 │ ├── dku7102-old │ ├── dku7102-sna │ ├── dku7103-sna │ ├── dku7202 │ ├── dm1520 │ ├── dm1521 │ ├── dm2500 │ ├── dm3025 │ ├── dm3045 │ ├── dm80 │ ├── dm80w │ ├── dmchat │ ├── dmd │ ├── dmd-24 │ ├── dmd-34 │ ├── dmd1 │ ├── dmdt80 │ ├── dmdt80w │ ├── dmterm │ ├── dp3360 │ ├── dp8242 │ ├── ds40 │ ├── ds40-2 │ ├── dt-100 │ ├── dt-100w │ ├── dt100 │ ├── dt100w │ ├── dt110 │ ├── dt80 │ ├── dt80-sas │ ├── dt80w │ ├── dtc300s │ ├── dtc382 │ ├── dtterm │ ├── dumb │ ├── dw │ ├── dw1 │ ├── dw2 │ ├── dw3 │ ├── dw4 │ ├── dwk │ └── dwk-vt │ ├── e │ ├── ecma+color │ ├── ecma+sgr │ ├── elks │ ├── elks-ansi │ ├── elks-glasstty │ ├── elks-vt52 │ ├── emots │ ├── emu │ ├── emu-220 │ ├── emx-base │ ├── env230 │ ├── envision230 │ ├── ep40 │ ├── ep4000 │ ├── ep4080 │ ├── ep48 │ ├── ergo4000 │ ├── esprit │ ├── esprit-am │ ├── eterm │ ├── eterm-color │ ├── ex155 │ ├── excel62 │ ├── excel62-rv │ ├── excel62-w │ ├── excel64 │ ├── excel64-rv │ ├── excel64-w │ └── exec80 │ ├── f │ ├── f100 │ ├── f100-rv │ ├── f110 │ ├── f110-14 │ ├── f110-14w │ ├── f110-w │ ├── f1720 │ ├── f1720a │ ├── f200 │ ├── f200-w │ ├── f200vi │ ├── f200vi-w │ ├── falco │ ├── falco-p │ ├── fenix │ ├── fenixw │ ├── fixterm │ ├── fortune │ ├── fos │ ├── fox │ ├── freedom │ ├── freedom-rv │ ├── freedom100 │ ├── freedom110 │ └── freedom200 │ ├── g │ ├── gator │ ├── gator-52 │ ├── gator-52t │ ├── gator-t │ ├── gigi │ ├── glasstty │ ├── gnome │ ├── gnome+pcfkeys │ ├── gnome-2007 │ ├── gnome-2008 │ ├── gnome-2012 │ ├── gnome-256color │ ├── gnome-fc5 │ ├── gnome-rh62 │ ├── gnome-rh72 │ ├── gnome-rh80 │ ├── gnome-rh90 │ ├── go-225 │ ├── go140 │ ├── go140w │ ├── go225 │ ├── graphos │ ├── graphos-30 │ ├── gs5430 │ ├── gs5430-22 │ ├── gs5430-24 │ ├── gs6300 │ ├── gsi │ ├── gt100 │ ├── gt100a │ ├── gt40 │ ├── gt42 │ ├── guru │ ├── guru+rv │ ├── guru+s │ ├── guru+unk │ ├── guru-24 │ ├── guru-33 │ ├── guru-33-rv │ ├── guru-33-s │ ├── guru-44 │ ├── guru-44-s │ ├── guru-76 │ ├── guru-76-lp │ ├── guru-76-s │ ├── guru-76-w │ ├── guru-76-w-s │ ├── guru-76-wm │ ├── guru-lp │ ├── guru-nctxt │ ├── guru-rv │ └── guru-s │ ├── h │ ├── h-100 │ ├── h-100bw │ ├── h100 │ ├── h100bw │ ├── h19 │ ├── h19-a │ ├── h19-b │ ├── h19-bs │ ├── h19-g │ ├── h19-smul │ ├── h19-u │ ├── h19-us │ ├── h19a │ ├── h19g │ ├── h19k │ ├── h19kermit │ ├── h19us │ ├── h29a-kc-bc │ ├── h29a-kc-uc │ ├── h29a-nkc-bc │ ├── h29a-nkc-uc │ ├── h80 │ ├── ha8675 │ ├── ha8686 │ ├── hazel │ ├── hds200 │ ├── he80 │ ├── heath │ ├── heath-19 │ ├── heath-ansi │ ├── heathkit │ ├── heathkit-a │ ├── hft │ ├── hft-c │ ├── hft-c-old │ ├── hft-old │ ├── hirez100 │ ├── hirez100-w │ ├── hmod1 │ ├── hp │ ├── hp+arrows │ ├── hp+color │ ├── hp+labels │ ├── hp+pfk+arrows │ ├── hp+pfk+cr │ ├── hp+pfk-cr │ ├── hp+printer │ ├── hp110 │ ├── hp150 │ ├── hp2 │ ├── hp236 │ ├── hp2382 │ ├── hp2382a │ ├── hp2392 │ ├── hp2397 │ ├── hp2397a │ ├── hp2621 │ ├── hp2621-48 │ ├── hp2621-a │ ├── hp2621-ba │ ├── hp2621-fl │ ├── hp2621-k45 │ ├── hp2621-nl │ ├── hp2621-nt │ ├── hp2621-wl │ ├── hp2621A │ ├── hp2621a │ ├── hp2621a-a │ ├── hp2621b │ ├── hp2621b-kx │ ├── hp2621b-kx-p │ ├── hp2621b-p │ ├── hp2621k45 │ ├── hp2621p │ ├── hp2621p-a │ ├── hp2622 │ ├── hp2622a │ ├── hp2623 │ ├── hp2623a │ ├── hp2624 │ ├── hp2624-10p │ ├── hp2624a │ ├── hp2624a-10p │ ├── hp2624b │ ├── hp2624b-10p │ ├── hp2624b-10p-p │ ├── hp2624b-4p │ ├── hp2624b-4p-p │ ├── hp2624b-p │ ├── hp2626 │ ├── hp2626-12 │ ├── hp2626-12-s │ ├── hp2626-12x40 │ ├── hp2626-ns │ ├── hp2626-s │ ├── hp2626-x40 │ ├── hp2626a │ ├── hp2626p │ ├── hp2627a │ ├── hp2627a-rev │ ├── hp2627c │ ├── hp262x │ ├── hp2640a │ ├── hp2640b │ ├── hp2641a │ ├── hp2644a │ ├── hp2645 │ ├── hp2645a │ ├── hp2647a │ ├── hp2648 │ ├── hp2648a │ ├── hp300h │ ├── hp45 │ ├── hp700 │ ├── hp700-wy │ ├── hp70092 │ ├── hp70092A │ ├── hp70092a │ ├── hp9837 │ ├── hp9845 │ ├── hp98550 │ ├── hp98550a │ ├── hp98720 │ ├── hp98721 │ ├── hpansi │ ├── hpex │ ├── hpex2 │ ├── hpgeneric │ ├── hpsub │ ├── hpterm │ ├── hpterm-color │ ├── htx11 │ ├── hurd │ ├── hz1000 │ ├── hz1420 │ ├── hz1500 │ ├── hz1510 │ ├── hz1520 │ ├── hz1520-noesc │ ├── hz1552 │ ├── hz1552-rv │ └── hz2000 │ ├── i │ ├── i100 │ ├── i3101 │ ├── i3164 │ ├── i400 │ ├── iTerm.app │ ├── ibcs2 │ ├── ibm+16color │ ├── ibm+color │ ├── ibm-apl │ ├── ibm-pc │ ├── ibm-system1 │ ├── ibm3101 │ ├── ibm3151 │ ├── ibm3161 │ ├── ibm3161-C │ ├── ibm3162 │ ├── ibm3163 │ ├── ibm3164 │ ├── ibm327x │ ├── ibm5051 │ ├── ibm5081 │ ├── ibm5081-c │ ├── ibm5151 │ ├── ibm5154 │ ├── ibm5154-c │ ├── ibm6153 │ ├── ibm6153-40 │ ├── ibm6153-90 │ ├── ibm6154 │ ├── ibm6154-c │ ├── ibm6155 │ ├── ibm8503 │ ├── ibm8507 │ ├── ibm8512 │ ├── ibm8513 │ ├── ibm8514 │ ├── ibm8514-c │ ├── ibm8604 │ ├── ibmaed │ ├── ibmapa16 │ ├── ibmapa8 │ ├── ibmapa8c │ ├── ibmapa8c-c │ ├── ibmega │ ├── ibmega-c │ ├── ibmmono │ ├── ibmmpel-c │ ├── ibmpc │ ├── ibmpc3 │ ├── ibmpc3r │ ├── ibmpc3r-mono │ ├── ibmpcx │ ├── ibmvga │ ├── ibmvga-c │ ├── ibmx │ ├── icl6402 │ ├── icl6404 │ ├── icl6404-w │ ├── ifmr │ ├── ims-ansi │ ├── ims950 │ ├── ims950-b │ ├── ims950-rv │ ├── infoton │ ├── interix │ ├── interix-nti │ ├── intertec │ ├── intertube │ ├── intertube2 │ ├── intext │ ├── intext2 │ ├── intextii │ ├── ips │ ├── ipsi │ ├── iq120 │ ├── iq140 │ ├── iris-ansi │ ├── iris-ansi-ap │ ├── iris-ansi-net │ ├── iris-color │ ├── iris40 │ └── iterm │ ├── j │ ├── jaixterm │ ├── jaixterm-m │ ├── jerq │ └── jfbterm │ ├── k │ ├── k45 │ ├── kaypro │ ├── kaypro2 │ ├── kds6402 │ ├── kds7372 │ ├── kds7372-w │ ├── kermit │ ├── kermit-am │ ├── klone+acs │ ├── klone+color │ ├── klone+koi8acs │ ├── klone+sgr │ ├── klone+sgr-dumb │ ├── klone+sgr8 │ ├── kon │ ├── kon2 │ ├── konsole │ ├── konsole+pcfkeys │ ├── konsole-16color │ ├── konsole-256color │ ├── konsole-base │ ├── konsole-linux │ ├── konsole-solaris │ ├── konsole-vt100 │ ├── konsole-vt420pc │ ├── konsole-xf3x │ ├── konsole-xf4x │ ├── kt7 │ ├── kt7ix │ ├── kterm │ ├── kterm-co │ ├── kterm-color │ ├── ktm │ └── kvt │ ├── l │ ├── la120 │ ├── layer │ ├── lft │ ├── lft-pc850 │ ├── linux │ ├── linux-16color │ ├── linux-basic │ ├── linux-c │ ├── linux-c-nc │ ├── linux-koi8 │ ├── linux-koi8r │ ├── linux-lat │ ├── linux-m │ ├── linux-nic │ ├── linux-vt │ ├── linux2.2 │ ├── linux2.6 │ ├── linux2.6.26 │ ├── linux3.0 │ ├── lisa │ ├── lisaterm │ ├── lisaterm-w │ ├── liswb │ ├── ln03 │ ├── ln03-w │ ├── lpr │ ├── luna │ └── luna68k │ ├── m │ ├── m2-nam │ ├── mac │ ├── mac-w │ ├── mach │ ├── mach-bold │ ├── mach-color │ ├── mach-gnu │ ├── mach-gnu-color │ ├── macintosh │ ├── macterminal-w │ ├── mai │ ├── masscomp │ ├── masscomp1 │ ├── masscomp2 │ ├── mdl110 │ ├── megatek │ ├── memhp │ ├── mgr │ ├── mgr-linux │ ├── mgr-sun │ ├── mgt │ ├── mgterm │ ├── microb │ ├── microbee │ ├── microterm │ ├── microterm5 │ ├── mime │ ├── mime-3ax │ ├── mime-fb │ ├── mime-hb │ ├── mime1 │ ├── mime2 │ ├── mime2a │ ├── mime2a-s │ ├── mime2a-v │ ├── mime314 │ ├── mime340 │ ├── mime3a │ ├── mime3ax │ ├── mimei │ ├── mimeii │ ├── minitel │ ├── minitel-2 │ ├── minitel-2-nam │ ├── minitel1 │ ├── minitel1b │ ├── minitel1b-80 │ ├── minix │ ├── minix-1.5 │ ├── minix-1.7 │ ├── minix-3.0 │ ├── minix-old │ ├── minix-old-am │ ├── mlterm │ ├── mlterm+pcfkeys │ ├── mlterm-256color │ ├── mlterm2 │ ├── mlterm3 │ ├── mm314 │ ├── mm340 │ ├── mod │ ├── mod24 │ ├── modgraph │ ├── modgraph2 │ ├── modgraph48 │ ├── mono-emx │ ├── morphos │ ├── mouse-sun │ ├── mrxvt │ ├── mrxvt-256color │ ├── ms-vt-utf8 │ ├── ms-vt100 │ ├── ms-vt100+ │ ├── ms-vt100-color │ ├── msk227 │ ├── msk22714 │ ├── msk227am │ ├── mskermit227 │ ├── mskermit22714 │ ├── mskermit227am │ ├── mt-70 │ ├── mt4520-rv │ ├── mt70 │ ├── mterm │ ├── mterm-ansi │ └── mvterm │ ├── n │ ├── nansi.sys │ ├── nansi.sysk │ ├── nansisys │ ├── nansisysk │ ├── ncr160vppp │ ├── ncr160vpwpp │ ├── ncr160vt100an │ ├── ncr160vt100pp │ ├── ncr160vt100wan │ ├── ncr160vt100wpp │ ├── ncr160vt200an │ ├── ncr160vt200pp │ ├── ncr160vt200wan │ ├── ncr160vt200wpp │ ├── ncr160vt300an │ ├── ncr160vt300pp │ ├── ncr160vt300wan │ ├── ncr160vt300wpp │ ├── ncr160wy50+pp │ ├── ncr160wy50+wpp │ ├── ncr160wy60pp │ ├── ncr160wy60wpp │ ├── ncr260intan │ ├── ncr260intpp │ ├── ncr260intwan │ ├── ncr260intwpp │ ├── ncr260vppp │ ├── ncr260vpwpp │ ├── ncr260vt100an │ ├── ncr260vt100pp │ ├── ncr260vt100wan │ ├── ncr260vt100wpp │ ├── ncr260vt200an │ ├── ncr260vt200pp │ ├── ncr260vt200wan │ ├── ncr260vt200wpp │ ├── ncr260vt300an │ ├── ncr260vt300pp │ ├── ncr260vt300wan │ ├── ncr260vt300wpp │ ├── ncr260wy325pp │ ├── ncr260wy325wpp │ ├── ncr260wy350pp │ ├── ncr260wy350wpp │ ├── ncr260wy50+pp │ ├── ncr260wy50+wpp │ ├── ncr260wy60pp │ ├── ncr260wy60wpp │ ├── ncr7900 │ ├── ncr7900i │ ├── ncr7900iv │ ├── ncr7901 │ ├── ncrvt100an │ ├── ncrvt100pp │ ├── ncrvt100wan │ ├── ncrvt100wpp │ ├── ncsa │ ├── ncsa-m │ ├── ncsa-m-ns │ ├── ncsa-ns │ ├── ncsa-vt220 │ ├── ncsa-vt220-8 │ ├── nd9500 │ ├── ndr9500 │ ├── ndr9500-25 │ ├── ndr9500-25-mc │ ├── ndr9500-25-mc-nl │ ├── ndr9500-25-nl │ ├── ndr9500-mc │ ├── ndr9500-mc-nl │ ├── ndr9500-nl │ ├── nec │ ├── nec5520 │ ├── netbsd6 │ ├── newhp │ ├── newhpkeyboard │ ├── news │ ├── news-29 │ ├── news-29-euc │ ├── news-29-sjis │ ├── news-33 │ ├── news-33-euc │ ├── news-33-sjis │ ├── news-42 │ ├── news-42-euc │ ├── news-42-sjis │ ├── news-a │ ├── news-o │ ├── news-old-unk │ ├── news-unk │ ├── news28 │ ├── news28-a │ ├── news29 │ ├── news31 │ ├── news31-a │ ├── news31-o │ ├── news33 │ ├── news40 │ ├── news40-a │ ├── news40-o │ ├── news42 │ ├── newscbm │ ├── newscbm-a │ ├── newscbm-o │ ├── newscbm33 │ ├── next │ ├── nextshell │ ├── northstar │ ├── nsterm │ ├── nsterm+7 │ ├── nsterm+acs │ ├── nsterm+c │ ├── nsterm+c41 │ ├── nsterm+mac │ ├── nsterm+s │ ├── nsterm-16color │ ├── nsterm-256color │ ├── nsterm-7 │ ├── nsterm-7-c │ ├── nsterm-7-c-s │ ├── nsterm-7-m │ ├── nsterm-7-m-s │ ├── nsterm-7-s │ ├── nsterm-acs │ ├── nsterm-acs-c │ ├── nsterm-acs-c-s │ ├── nsterm-acs-m │ ├── nsterm-acs-m-s │ ├── nsterm-acs-s │ ├── nsterm-bce │ ├── nsterm-build326 │ ├── nsterm-build343 │ ├── nsterm-c │ ├── nsterm-c-7 │ ├── nsterm-c-acs │ ├── nsterm-c-s │ ├── nsterm-c-s-7 │ ├── nsterm-c-s-acs │ ├── nsterm-m │ ├── nsterm-m-7 │ ├── nsterm-m-acs │ ├── nsterm-m-s │ ├── nsterm-m-s-7 │ ├── nsterm-m-s-acs │ ├── nsterm-old │ ├── nsterm-s │ ├── nsterm-s-7 │ ├── nsterm-s-acs │ ├── ntconsole │ ├── ntconsole-100 │ ├── ntconsole-100-nti │ ├── ntconsole-25 │ ├── ntconsole-25-nti │ ├── ntconsole-25-w │ ├── ntconsole-25-w-vt │ ├── ntconsole-35 │ ├── ntconsole-35-nti │ ├── ntconsole-35-w │ ├── ntconsole-50 │ ├── ntconsole-50-nti │ ├── ntconsole-50-w │ ├── ntconsole-60 │ ├── ntconsole-60-nti │ ├── ntconsole-60-w │ ├── ntconsole-w │ ├── ntconsole-w-vt │ ├── nwe501 │ ├── nwe501-a │ ├── nwe501-o │ ├── nwp-511 │ ├── nwp-517 │ ├── nwp-517-w │ ├── nwp251-a │ ├── nwp251-o │ ├── nwp511 │ ├── nwp512 │ ├── nwp512-a │ ├── nwp512-o │ ├── nwp513 │ ├── nwp513-a │ ├── nwp513-o │ ├── nwp514 │ ├── nwp514-a │ ├── nwp514-o │ ├── nwp517 │ ├── nwp517-w │ ├── nwp518 │ ├── nwp518-a │ ├── nwp518-o │ └── nxterm │ ├── o │ ├── o31 │ ├── o4112-nd │ ├── o85h │ ├── oabm85h │ ├── oblit │ ├── oc100 │ ├── oconcept │ ├── ofcons │ ├── ojerq │ ├── old-st │ ├── oldibmpc3 │ ├── oldpc3 │ ├── oldsun │ ├── omron │ ├── opennt │ ├── opennt-100 │ ├── opennt-100-nti │ ├── opennt-25 │ ├── opennt-25-nti │ ├── opennt-25-w │ ├── opennt-25-w-vt │ ├── opennt-35 │ ├── opennt-35-nti │ ├── opennt-35-w │ ├── opennt-50 │ ├── opennt-50-nti │ ├── opennt-50-w │ ├── opennt-60 │ ├── opennt-60-nti │ ├── opennt-60-w │ ├── opennt-nti │ ├── opennt-w │ ├── opennt-w-vt │ ├── opus3n1+ │ ├── origibmpc3 │ ├── origpc3 │ ├── os9LII │ ├── osborne │ ├── osborne-w │ ├── osborne1 │ ├── osborne1-w │ ├── osexec │ ├── otek4112 │ ├── otek4113 │ ├── otek4114 │ ├── otek4115 │ └── owl │ ├── p │ ├── p12 │ ├── p12-m │ ├── p12-m-w │ ├── p12-w │ ├── p14 │ ├── p14-m │ ├── p14-m-w │ ├── p14-w │ ├── p19 │ ├── p4 │ ├── p5 │ ├── p7 │ ├── p8 │ ├── p8-w │ ├── p8gl │ ├── p9 │ ├── p9-8 │ ├── p9-8-w │ ├── p9-w │ ├── pc-coherent │ ├── pc-minix │ ├── pc-venix │ ├── pc3 │ ├── pc3-bold │ ├── pc3r │ ├── pc3r-m │ ├── pc6300plus │ ├── pc7300 │ ├── pcansi │ ├── pcansi-25 │ ├── pcansi-25-m │ ├── pcansi-33 │ ├── pcansi-33-m │ ├── pcansi-43 │ ├── pcansi-43-m │ ├── pcansi-m │ ├── pcansi-mono │ ├── pcansi25 │ ├── pcansi25m │ ├── pcansi33 │ ├── pcansi33m │ ├── pcansi43 │ ├── pccon │ ├── pccon+base │ ├── pccon+colors │ ├── pccon+keys │ ├── pccon+sgr+acs │ ├── pccon+sgr+acs0 │ ├── pccon-m │ ├── pccon0 │ ├── pccon0-m │ ├── pccons │ ├── pcconsole │ ├── pcix │ ├── pckermit │ ├── pckermit12 │ ├── pckermit120 │ ├── pcmw │ ├── pcplot │ ├── pcvt25 │ ├── pcvt25-color │ ├── pcvt25w │ ├── pcvt28 │ ├── pcvt28w │ ├── pcvt35 │ ├── pcvt35w │ ├── pcvt40 │ ├── pcvt40w │ ├── pcvt43 │ ├── pcvt43w │ ├── pcvt50 │ ├── pcvt50w │ ├── pcvtXX │ ├── pcz19 │ ├── pe1100 │ ├── pe1200 │ ├── pe1251 │ ├── pe550 │ ├── pe6100 │ ├── pe6300 │ ├── pe6312 │ ├── pe7000c │ ├── pe7000m │ ├── pilot │ ├── pmcons │ ├── pmconsole │ ├── printer │ ├── prism12 │ ├── prism12-m │ ├── prism12-m-w │ ├── prism12-w │ ├── prism14 │ ├── prism14-m │ ├── prism14-m-w │ ├── prism14-w │ ├── prism2 │ ├── prism4 │ ├── prism5 │ ├── prism7 │ ├── prism8 │ ├── prism8-w │ ├── prism8gl │ ├── prism9 │ ├── prism9-8 │ ├── prism9-8-w │ ├── prism9-w │ ├── pro350 │ ├── ps300 │ ├── psterm │ ├── psterm-80x24 │ ├── psterm-90x28 │ ├── psterm-96x48 │ ├── psterm-basic │ ├── psterm-fast │ ├── psx_ansi │ ├── pt100 │ ├── pt100w │ ├── pt200 │ ├── pt200w │ ├── pt210 │ ├── pt250 │ ├── pt250w │ ├── pt505 │ ├── pt505-22 │ ├── pt505-24 │ ├── pty │ ├── putty │ ├── putty+fnkeys │ ├── putty+fnkeys+esc │ ├── putty+fnkeys+linux │ ├── putty+fnkeys+sco │ ├── putty+fnkeys+vt100 │ ├── putty+fnkeys+vt400 │ ├── putty+fnkeys+xterm │ ├── putty-256color │ ├── putty-sco │ └── putty-vt100 │ ├── q │ ├── qansi │ ├── qansi-g │ ├── qansi-m │ ├── qansi-t │ ├── qansi-w │ ├── qdcons │ ├── qdss │ ├── qnx │ ├── qnx4 │ ├── qnxm │ ├── qnxt │ ├── qnxt2 │ ├── qnxt4 │ ├── qnxtmono │ ├── qnxw │ ├── qume │ ├── qume5 │ ├── qvt101 │ ├── qvt101+ │ ├── qvt101p │ ├── qvt102 │ ├── qvt103 │ ├── qvt103-w │ ├── qvt108 │ ├── qvt119 │ ├── qvt119+ │ ├── qvt119+-25 │ ├── qvt119+-25-w │ ├── qvt119+-w │ ├── qvt119-25-w │ ├── qvt119-w │ ├── qvt119p │ ├── qvt119p-25 │ ├── qvt119p-25-w │ ├── qvt119p-w │ ├── qvt203 │ ├── qvt203+ │ ├── qvt203-25 │ ├── qvt203-25-w │ ├── qvt203-w │ └── qvt203-w-am │ ├── r │ ├── rbcomm │ ├── rbcomm-nam │ ├── rbcomm-w │ ├── rca │ ├── rcons │ ├── rcons-color │ ├── rebus3180 │ ├── regent │ ├── regent100 │ ├── regent20 │ ├── regent200 │ ├── regent25 │ ├── regent40 │ ├── regent40+ │ ├── regent60 │ ├── rt6221 │ ├── rt6221-w │ ├── rtpc │ ├── rxvt │ ├── rxvt+pcfkeys │ ├── rxvt-16color │ ├── rxvt-256color │ ├── rxvt-88color │ ├── rxvt-basic │ ├── rxvt-color │ ├── rxvt-cygwin │ ├── rxvt-cygwin-native │ └── rxvt-xpm │ ├── s │ ├── s4 │ ├── sb1 │ ├── sb2 │ ├── sb3 │ ├── sbi │ ├── sbobcat │ ├── sc410 │ ├── sc415 │ ├── scanset │ ├── scoansi │ ├── scoansi-new │ ├── scoansi-old │ ├── screen │ ├── screen+fkeys │ ├── screen+italics │ ├── screen-16color │ ├── screen-16color-bce │ ├── screen-16color-bce-s │ ├── screen-16color-s │ ├── screen-256color │ ├── screen-256color-bce │ ├── screen-256color-bce-s │ ├── screen-256color-s │ ├── screen-bce │ ├── screen-bce.Eterm │ ├── screen-bce.gnome │ ├── screen-bce.konsole │ ├── screen-bce.linux │ ├── screen-bce.mrxvt │ ├── screen-bce.rxvt │ ├── screen-bce.xterm-new │ ├── screen-s │ ├── screen-w │ ├── screen.Eterm │ ├── screen.gnome │ ├── screen.konsole │ ├── screen.konsole-256color │ ├── screen.linux │ ├── screen.mlterm │ ├── screen.mlterm-256color │ ├── screen.mrxvt │ ├── screen.putty │ ├── screen.putty-256color │ ├── screen.rxvt │ ├── screen.teraterm │ ├── screen.vte │ ├── screen.vte-256color │ ├── screen.xterm-256color │ ├── screen.xterm-new │ ├── screen.xterm-r6 │ ├── screen.xterm-xfree86 │ ├── screen2 │ ├── screen3 │ ├── screwpoint │ ├── scrhp │ ├── sibo │ ├── simpleterm │ ├── simterm │ ├── soroc │ ├── soroc120 │ ├── soroc140 │ ├── spinwriter │ ├── st │ ├── st-16color │ ├── st-256color │ ├── st52 │ ├── st52-color │ ├── st52-m │ ├── st52-old │ ├── stterm │ ├── stterm-16color │ ├── stterm-256color │ ├── stv52 │ ├── stv52pc │ ├── sun │ ├── sun+sl │ ├── sun-1 │ ├── sun-12 │ ├── sun-17 │ ├── sun-24 │ ├── sun-34 │ ├── sun-48 │ ├── sun-c │ ├── sun-cgsix │ ├── sun-cmd │ ├── sun-color │ ├── sun-e │ ├── sun-e-s │ ├── sun-il │ ├── sun-nic │ ├── sun-s │ ├── sun-s-e │ ├── sun-ss5 │ ├── sun-type4 │ ├── sun1 │ ├── sun2 │ ├── sune │ ├── superbee │ ├── superbee-xsb │ ├── superbeeic │ ├── superbrain │ ├── sv80 │ ├── swtp │ ├── synertek │ ├── synertek380 │ └── system1 │ ├── t │ ├── t10 │ ├── t1061 │ ├── t1061f │ ├── t16 │ ├── t3700 │ ├── t3800 │ ├── t653x │ ├── tab │ ├── tab132 │ ├── tab132-15 │ ├── tab132-rv │ ├── tab132-w │ ├── tab132-w-rv │ ├── tandem6510 │ ├── tandem653 │ ├── tek │ ├── tek4012 │ ├── tek4013 │ ├── tek4014 │ ├── tek4014-sm │ ├── tek4015 │ ├── tek4015-sm │ ├── tek4023 │ ├── tek4024 │ ├── tek4025 │ ├── tek4025-17 │ ├── tek4025-17-ws │ ├── tek4025-cr │ ├── tek4025-ex │ ├── tek4025a │ ├── tek4025ex │ ├── tek4027 │ ├── tek4027-ex │ ├── tek4105 │ ├── tek4105-30 │ ├── tek4105a │ ├── tek4106brl │ ├── tek4107 │ ├── tek4107brl │ ├── tek4109 │ ├── tek4109brl │ ├── tek4112 │ ├── tek4112-5 │ ├── tek4112-nd │ ├── tek4113 │ ├── tek4113-34 │ ├── tek4113-nd │ ├── tek4114 │ ├── tek4115 │ ├── tek4125 │ ├── tek4205 │ ├── tek4207 │ ├── tek4207-s │ ├── tek4404 │ ├── teken │ ├── teleray │ ├── teletec │ ├── teraterm │ ├── teraterm2.3 │ ├── teraterm4.59 │ ├── terminator │ ├── terminet │ ├── terminet1200 │ ├── terminet300 │ ├── terminology │ ├── tgtelnet │ ├── ti700 │ ├── ti733 │ ├── ti735 │ ├── ti745 │ ├── ti800 │ ├── ti916 │ ├── ti916-132 │ ├── ti916-220-7 │ ├── ti916-220-8 │ ├── ti916-8 │ ├── ti916-8-132 │ ├── ti924 │ ├── ti924-8 │ ├── ti924-8w │ ├── ti924w │ ├── ti926 │ ├── ti926-8 │ ├── ti928 │ ├── ti928-8 │ ├── ti931 │ ├── ti_ansi │ ├── tkterm │ ├── tmux │ ├── tmux-256color │ ├── tn1200 │ ├── tn300 │ ├── trs16 │ ├── trs2 │ ├── trs80II │ ├── trsII │ ├── ts-1 │ ├── ts-1p │ ├── ts1 │ ├── ts100 │ ├── ts100-ctxt │ ├── ts100-sp │ ├── ts1p │ ├── tt │ ├── tt505-22 │ ├── tt52 │ ├── tty33 │ ├── tty35 │ ├── tty37 │ ├── tty40 │ ├── tty43 │ ├── tty4420 │ ├── tty4424 │ ├── tty4424-1 │ ├── tty4424m │ ├── tty4426 │ ├── tty5410 │ ├── tty5410-w │ ├── tty5410v1 │ ├── tty5410v1-w │ ├── tty5420 │ ├── tty5420+nl │ ├── tty5420-nl │ ├── tty5420-rv │ ├── tty5420-rv-nl │ ├── tty5420-w │ ├── tty5420-w-nl │ ├── tty5420-w-rv │ ├── tty5420-w-rv-n │ ├── tty5425 │ ├── tty5425-nl │ ├── tty5425-w │ ├── tty5620 │ ├── tty5620-1 │ ├── tty5620-24 │ ├── tty5620-34 │ ├── tty5620-s │ ├── ttydmd │ ├── tvi803 │ ├── tvi9065 │ ├── tvi910 │ ├── tvi910+ │ ├── tvi912 │ ├── tvi912b │ ├── tvi912b+2p │ ├── tvi912b+dim │ ├── tvi912b+mc │ ├── tvi912b+printer │ ├── tvi912b+vb │ ├── tvi912b-2p │ ├── tvi912b-2p-mc │ ├── tvi912b-2p-p │ ├── tvi912b-2p-unk │ ├── tvi912b-mc │ ├── tvi912b-mc-2p │ ├── tvi912b-mc-vb │ ├── tvi912b-p │ ├── tvi912b-p-2p │ ├── tvi912b-p-vb │ ├── tvi912b-unk │ ├── tvi912b-unk-2p │ ├── tvi912b-unk-vb │ ├── tvi912b-vb │ ├── tvi912b-vb-mc │ ├── tvi912b-vb-p │ ├── tvi912b-vb-unk │ ├── tvi912c │ ├── tvi912c-2p │ ├── tvi912c-2p-mc │ ├── tvi912c-2p-p │ ├── tvi912c-2p-unk │ ├── tvi912c-mc │ ├── tvi912c-mc-2p │ ├── tvi912c-mc-vb │ ├── tvi912c-p │ ├── tvi912c-p-2p │ ├── tvi912c-p-vb │ ├── tvi912c-unk │ ├── tvi912c-unk-2p │ ├── tvi912c-unk-vb │ ├── tvi912c-vb │ ├── tvi912c-vb-mc │ ├── tvi912c-vb-p │ ├── tvi912c-vb-unk │ ├── tvi912cc │ ├── tvi914 │ ├── tvi920 │ ├── tvi920b │ ├── tvi920b+fn │ ├── tvi920b-2p │ ├── tvi920b-2p-mc │ ├── tvi920b-2p-p │ ├── tvi920b-2p-unk │ ├── tvi920b-mc │ ├── tvi920b-mc-2p │ ├── tvi920b-mc-vb │ ├── tvi920b-p │ ├── tvi920b-p-2p │ ├── tvi920b-p-vb │ ├── tvi920b-unk │ ├── tvi920b-unk-2p │ ├── tvi920b-unk-vb │ ├── tvi920b-vb │ ├── tvi920b-vb-mc │ ├── tvi920b-vb-p │ ├── tvi920b-vb-unk │ ├── tvi920c │ ├── tvi920c-2p │ ├── tvi920c-2p-mc │ ├── tvi920c-2p-p │ ├── tvi920c-2p-unk │ ├── tvi920c-mc │ ├── tvi920c-mc-2p │ ├── tvi920c-mc-vb │ ├── tvi920c-p │ ├── tvi920c-p-2p │ ├── tvi920c-p-vb │ ├── tvi920c-unk │ ├── tvi920c-unk-2p │ ├── tvi920c-unk-vb │ ├── tvi920c-vb │ ├── tvi920c-vb-mc │ ├── tvi920c-vb-p │ ├── tvi920c-vb-unk │ ├── tvi921 │ ├── tvi924 │ ├── tvi925 │ ├── tvi925-hi │ ├── tvi92B │ ├── tvi92D │ ├── tvi950 │ ├── tvi950-2p │ ├── tvi950-4p │ ├── tvi950-rv │ ├── tvi950-rv-2p │ ├── tvi950-rv-4p │ ├── tvi955 │ ├── tvi955-hb │ ├── tvi955-w │ ├── tvi970 │ ├── tvi970-2p │ ├── tvi970-vb │ ├── tvipt │ ├── tw100 │ ├── tw52 │ ├── tw52-color │ ├── tw52-m │ ├── tws-generic │ ├── tws2102-sna │ ├── tws2103 │ └── tws2103-sna │ ├── u │ ├── ultima2 │ ├── ultimaII │ ├── uniterm │ ├── uniterm49 │ ├── unixpc │ ├── unknown │ ├── uts30 │ └── uwin │ ├── v │ ├── v200-nam │ ├── v320n │ ├── v3220 │ ├── v5410 │ ├── vanilla │ ├── vapple │ ├── vc103 │ ├── vc203 │ ├── vc303 │ ├── vc303a │ ├── vc403a │ ├── vc404 │ ├── vc404-s │ ├── vc414 │ ├── vc414h │ ├── vc415 │ ├── venix │ ├── versaterm │ ├── vi200 │ ├── vi200-f │ ├── vi200-rv │ ├── vi300 │ ├── vi300-old │ ├── vi50 │ ├── vi500 │ ├── vi50adm │ ├── vi55 │ ├── vi550 │ ├── vi603 │ ├── viewpoint │ ├── viewpoint3a+ │ ├── viewpoint60 │ ├── viewpoint90 │ ├── vip │ ├── vip-H │ ├── vip-Hw │ ├── vip-w │ ├── vip7800-H │ ├── vip7800-Hw │ ├── vip7800-w │ ├── visa50 │ ├── visual603 │ ├── vitty │ ├── vk100 │ ├── vp3a+ │ ├── vp60 │ ├── vp90 │ ├── vremote │ ├── vs100 │ ├── vs100-x10 │ ├── vsc │ ├── vt-61 │ ├── vt-utf8 │ ├── vt100 │ ├── vt100+ │ ├── vt100+enq │ ├── vt100+fnkeys │ ├── vt100+keypad │ ├── vt100+pfkeys │ ├── vt100-am │ ├── vt100-bm │ ├── vt100-bm-o │ ├── vt100-bot-s │ ├── vt100-nam │ ├── vt100-nam-w │ ├── vt100-nav │ ├── vt100-nav-w │ ├── vt100-putty │ ├── vt100-s │ ├── vt100-s-bot │ ├── vt100-s-top │ ├── vt100-top-s │ ├── vt100-vb │ ├── vt100-w │ ├── vt100-w-am │ ├── vt100-w-nam │ ├── vt100-w-nav │ ├── vt100nam │ ├── vt102 │ ├── vt102+enq │ ├── vt102-nsgr │ ├── vt102-w │ ├── vt125 │ ├── vt131 │ ├── vt132 │ ├── vt200 │ ├── vt200-8 │ ├── vt200-8bit │ ├── vt200-js │ ├── vt200-old │ ├── vt200-w │ ├── vt220 │ ├── vt220+keypad │ ├── vt220-8 │ ├── vt220-8bit │ ├── vt220-js │ ├── vt220-nam │ ├── vt220-old │ ├── vt220-w │ ├── vt220d │ ├── vt300 │ ├── vt300-nam │ ├── vt300-w │ ├── vt300-w-nam │ ├── vt320 │ ├── vt320-k3 │ ├── vt320-k311 │ ├── vt320-nam │ ├── vt320-w │ ├── vt320-w-nam │ ├── vt320nam │ ├── vt330 │ ├── vt340 │ ├── vt400 │ ├── vt400-24 │ ├── vt420 │ ├── vt420f │ ├── vt420pc │ ├── vt420pcdos │ ├── vt50 │ ├── vt50h │ ├── vt510 │ ├── vt510pc │ ├── vt510pcdos │ ├── vt52 │ ├── vt520 │ ├── vt520ansi │ ├── vt525 │ ├── vt61 │ ├── vt61.5 │ ├── vte │ ├── vte+pcfkeys │ ├── vte-2007 │ ├── vte-2008 │ ├── vte-2012 │ ├── vte-2014 │ ├── vte-256color │ ├── vtnt │ ├── vv100 │ └── vwmterm │ ├── w │ ├── wren │ ├── wrenw │ ├── wsiris │ ├── wsvt25 │ ├── wsvt25m │ ├── wy-75ap │ ├── wy-99fgt │ ├── wy-99fgta │ ├── wy100 │ ├── wy100q │ ├── wy120 │ ├── wy120-25 │ ├── wy120-25-w │ ├── wy120-vb │ ├── wy120-w │ ├── wy120-w-vb │ ├── wy120-wvb │ ├── wy150 │ ├── wy150-25 │ ├── wy150-25-w │ ├── wy150-vb │ ├── wy150-w │ ├── wy150-w-vb │ ├── wy160 │ ├── wy160-25 │ ├── wy160-25-w │ ├── wy160-42 │ ├── wy160-42-w │ ├── wy160-43 │ ├── wy160-43-w │ ├── wy160-tek │ ├── wy160-vb │ ├── wy160-w │ ├── wy160-w-vb │ ├── wy160-wvb │ ├── wy185 │ ├── wy185-24 │ ├── wy185-vb │ ├── wy185-w │ ├── wy185-wvb │ ├── wy30 │ ├── wy30-mc │ ├── wy30-vb │ ├── wy325 │ ├── wy325-25 │ ├── wy325-25w │ ├── wy325-42 │ ├── wy325-42w │ ├── wy325-42w-vb │ ├── wy325-42wvb │ ├── wy325-43 │ ├── wy325-43w │ ├── wy325-43w-vb │ ├── wy325-43wvb │ ├── wy325-80 │ ├── wy325-vb │ ├── wy325-w │ ├── wy325-w-vb │ ├── wy325-wvb │ ├── wy325w-24 │ ├── wy350 │ ├── wy350-vb │ ├── wy350-w │ ├── wy350-wvb │ ├── wy370 │ ├── wy370-101k │ ├── wy370-105k │ ├── wy370-EPC │ ├── wy370-nk │ ├── wy370-rv │ ├── wy370-tek │ ├── wy370-vb │ ├── wy370-w │ ├── wy370-wvb │ ├── wy50 │ ├── wy50-mc │ ├── wy50-vb │ ├── wy50-w │ ├── wy50-wvb │ ├── wy520 │ ├── wy520-24 │ ├── wy520-36 │ ├── wy520-36pc │ ├── wy520-36w │ ├── wy520-36wpc │ ├── wy520-48 │ ├── wy520-48pc │ ├── wy520-48w │ ├── wy520-48wpc │ ├── wy520-epc │ ├── wy520-epc-24 │ ├── wy520-epc-vb │ ├── wy520-epc-w │ ├── wy520-epc-wvb │ ├── wy520-vb │ ├── wy520-w │ ├── wy520-wvb │ ├── wy60 │ ├── wy60-25 │ ├── wy60-25-w │ ├── wy60-316X │ ├── wy60-42 │ ├── wy60-42-w │ ├── wy60-43 │ ├── wy60-43-w │ ├── wy60-AT │ ├── wy60-PC │ ├── wy60-vb │ ├── wy60-w │ ├── wy60-w-vb │ ├── wy60-wvb │ ├── wy75 │ ├── wy75-mc │ ├── wy75-vb │ ├── wy75-w │ ├── wy75-wvb │ ├── wy75ap │ ├── wy85 │ ├── wy85-8bit │ ├── wy85-vb │ ├── wy85-w │ ├── wy85-wvb │ ├── wy99-ansi │ ├── wy99a-ansi │ ├── wy99f │ ├── wy99fa │ ├── wy99fgt │ ├── wy99fgta │ ├── wy99gt │ ├── wy99gt-25 │ ├── wy99gt-25-w │ ├── wy99gt-tek │ ├── wy99gt-vb │ ├── wy99gt-w │ ├── wy99gt-w-vb │ ├── wy99gt-wvb │ ├── wyse-325 │ ├── wyse-75ap │ ├── wyse-vp │ ├── wyse120 │ ├── wyse120-25 │ ├── wyse120-25-w │ ├── wyse120-vb │ ├── wyse120-w │ ├── wyse120-wvb │ ├── wyse150 │ ├── wyse150-25 │ ├── wyse150-25-w │ ├── wyse150-vb │ ├── wyse150-w │ ├── wyse150-w-vb │ ├── wyse160 │ ├── wyse160-25 │ ├── wyse160-25-w │ ├── wyse160-42 │ ├── wyse160-42-w │ ├── wyse160-43 │ ├── wyse160-43-w │ ├── wyse160-vb │ ├── wyse160-w │ ├── wyse160-wvb │ ├── wyse185 │ ├── wyse185-24 │ ├── wyse185-vb │ ├── wyse185-w │ ├── wyse185-wvb │ ├── wyse30 │ ├── wyse30-mc │ ├── wyse30-vb │ ├── wyse325 │ ├── wyse325-25 │ ├── wyse325-25w │ ├── wyse325-42 │ ├── wyse325-42w │ ├── wyse325-43 │ ├── wyse325-43w │ ├── wyse325-vb │ ├── wyse325-w │ ├── wyse325-wvb │ ├── wyse350 │ ├── wyse350-vb │ ├── wyse350-w │ ├── wyse350-wvb │ ├── wyse370 │ ├── wyse50 │ ├── wyse50-mc │ ├── wyse50-vb │ ├── wyse50-w │ ├── wyse50-wvb │ ├── wyse520 │ ├── wyse520-24 │ ├── wyse520-36 │ ├── wyse520-36pc │ ├── wyse520-36w │ ├── wyse520-36wpc │ ├── wyse520-48 │ ├── wyse520-48pc │ ├── wyse520-48w │ ├── wyse520-48wpc │ ├── wyse520-epc │ ├── wyse520-epc-w │ ├── wyse520-p-wvb │ ├── wyse520-pc-24 │ ├── wyse520-pc-vb │ ├── wyse520-vb │ ├── wyse520-w │ ├── wyse520-wvb │ ├── wyse60 │ ├── wyse60-25 │ ├── wyse60-25-w │ ├── wyse60-316X │ ├── wyse60-42 │ ├── wyse60-42-w │ ├── wyse60-43 │ ├── wyse60-43-w │ ├── wyse60-AT │ ├── wyse60-PC │ ├── wyse60-vb │ ├── wyse60-w │ ├── wyse60-wvb │ ├── wyse75 │ ├── wyse75-mc │ ├── wyse75-vb │ ├── wyse75-w │ ├── wyse75-wvb │ ├── wyse75ap │ ├── wyse85 │ ├── wyse85-8bit │ ├── wyse85-vb │ ├── wyse85-w │ ├── wyse85-wvb │ ├── wyse99gt │ ├── wyse99gt-25 │ ├── wyse99gt-25-w │ ├── wyse99gt-vb │ ├── wyse99gt-w │ └── wyse99gt-wvb │ ├── x │ ├── x10term │ ├── x1700 │ ├── x1700-lm │ ├── x1720 │ ├── x1750 │ ├── x68k │ ├── x68k-ite │ ├── x820 │ ├── xdku │ ├── xenix │ ├── xerox │ ├── xerox-lm │ ├── xerox1720 │ ├── xerox820 │ ├── xfce │ ├── xiterm │ ├── xl83 │ ├── xnuppc │ ├── xnuppc+100x37 │ ├── xnuppc+112x37 │ ├── xnuppc+128x40 │ ├── xnuppc+128x48 │ ├── xnuppc+144x48 │ ├── xnuppc+160x64 │ ├── xnuppc+200x64 │ ├── xnuppc+200x75 │ ├── xnuppc+256x96 │ ├── xnuppc+80x25 │ ├── xnuppc+80x30 │ ├── xnuppc+90x30 │ ├── xnuppc+b │ ├── xnuppc+basic │ ├── xnuppc+c │ ├── xnuppc+f │ ├── xnuppc+f2 │ ├── xnuppc-100x37 │ ├── xnuppc-100x37-m │ ├── xnuppc-112x37 │ ├── xnuppc-112x37-m │ ├── xnuppc-128x40 │ ├── xnuppc-128x40-m │ ├── xnuppc-128x48 │ ├── xnuppc-128x48-m │ ├── xnuppc-144x48 │ ├── xnuppc-144x48-m │ ├── xnuppc-160x64 │ ├── xnuppc-160x64-m │ ├── xnuppc-200x64 │ ├── xnuppc-200x64-m │ ├── xnuppc-200x75 │ ├── xnuppc-200x75-m │ ├── xnuppc-256x96 │ ├── xnuppc-256x96-m │ ├── xnuppc-80x25 │ ├── xnuppc-80x25-m │ ├── xnuppc-80x30 │ ├── xnuppc-80x30-m │ ├── xnuppc-90x30 │ ├── xnuppc-90x30-m │ ├── xnuppc-b │ ├── xnuppc-f │ ├── xnuppc-f2 │ ├── xnuppc-m │ ├── xnuppc-m-b │ ├── xnuppc-m-f │ ├── xnuppc-m-f2 │ ├── xtalk │ ├── xterm │ ├── xterm+256color │ ├── xterm+256setaf │ ├── xterm+88color │ ├── xterm+app │ ├── xterm+edit │ ├── xterm+kbs │ ├── xterm+noapp │ ├── xterm+pc+edit │ ├── xterm+pcc0 │ ├── xterm+pcc1 │ ├── xterm+pcc2 │ ├── xterm+pcc3 │ ├── xterm+pce2 │ ├── xterm+pcf0 │ ├── xterm+pcf2 │ ├── xterm+pcfkeys │ ├── xterm+r6f2 │ ├── xterm+sl │ ├── xterm+sl-twm │ ├── xterm+sm+1002 │ ├── xterm+sm+1003 │ ├── xterm+sm+1005 │ ├── xterm+sm+1006 │ ├── xterm+tmux │ ├── xterm+vt+edit │ ├── xterm+x10mouse │ ├── xterm+x11hilite │ ├── xterm+x11mouse │ ├── xterm-1002 │ ├── xterm-1003 │ ├── xterm-1005 │ ├── xterm-1006 │ ├── xterm-16color │ ├── xterm-24 │ ├── xterm-256color │ ├── xterm-88color │ ├── xterm-8bit │ ├── xterm-basic │ ├── xterm-bold │ ├── xterm-color │ ├── xterm-hp │ ├── xterm-new │ ├── xterm-nic │ ├── xterm-noapp │ ├── xterm-old │ ├── xterm-pcolor │ ├── xterm-r5 │ ├── xterm-r6 │ ├── xterm-sco │ ├── xterm-sun │ ├── xterm-utf8 │ ├── xterm-vt220 │ ├── xterm-vt52 │ ├── xterm-x10mouse │ ├── xterm-x11hilite │ ├── xterm-x11mouse │ ├── xterm-xf86-v32 │ ├── xterm-xf86-v33 │ ├── xterm-xf86-v333 │ ├── xterm-xf86-v40 │ ├── xterm-xf86-v43 │ ├── xterm-xf86-v44 │ ├── xterm-xfree86 │ ├── xterm-xi │ ├── xterm1 │ ├── xtermc │ ├── xtermm │ ├── xterms │ ├── xterms-sun │ └── xwsh │ └── z │ ├── z-100 │ ├── z-100bw │ ├── z100 │ ├── z100bw │ ├── z110 │ ├── z110bw │ ├── z19 │ ├── z29 │ ├── z29a │ ├── z29a-kc-bc │ ├── z29a-kc-uc │ ├── z29a-nkc-bc │ ├── z29a-nkc-uc │ ├── z29b │ ├── z30 │ ├── z340 │ ├── z340-nam │ ├── z39-a │ ├── z39a │ ├── z50 │ ├── z8001 │ ├── zen30 │ ├── zen50 │ ├── zen8001 │ ├── zenith │ ├── zenith29 │ ├── zenith39-a │ ├── zenith39-ansi │ ├── zt-1 │ ├── ztx │ ├── ztx-1-a │ └── ztx11 ├── man ├── MKada_config.in ├── MKncu_config.in ├── MKterminfo.sh ├── Makefile ├── Makefile.in ├── captoinfo.1m ├── clear.1 ├── curs_add_wch.3x ├── curs_add_wchstr.3x ├── curs_addch.3x ├── curs_addchstr.3x ├── curs_addstr.3x ├── curs_addwstr.3x ├── curs_attr.3x ├── curs_beep.3x ├── curs_bkgd.3x ├── curs_bkgrnd.3x ├── curs_border.3x ├── curs_border_set.3x ├── curs_clear.3x ├── curs_color.3x ├── curs_delch.3x ├── curs_deleteln.3x ├── curs_extend.3x ├── curs_get_wch.3x ├── curs_get_wstr.3x ├── curs_getcchar.3x ├── curs_getch.3x ├── curs_getstr.3x ├── curs_getyx.3x ├── curs_in_wch.3x ├── curs_in_wchstr.3x ├── curs_inch.3x ├── curs_inchstr.3x ├── curs_initscr.3x ├── curs_inopts.3x ├── curs_ins_wch.3x ├── curs_ins_wstr.3x ├── curs_insch.3x ├── curs_insstr.3x ├── curs_instr.3x ├── curs_inwstr.3x ├── curs_kernel.3x ├── curs_legacy.3x ├── curs_memleaks.3x ├── curs_mouse.3x ├── curs_move.3x ├── curs_opaque.3x ├── curs_outopts.3x ├── curs_overlay.3x ├── curs_pad.3x ├── curs_print.3x ├── curs_printw.3x ├── curs_refresh.3x ├── curs_scanw.3x ├── curs_scr_dump.3x ├── curs_scroll.3x ├── curs_slk.3x ├── curs_sp_funcs.3x ├── curs_termattrs.3x ├── curs_termcap.3x ├── curs_terminfo.3x ├── curs_threads.3x ├── curs_touch.3x ├── curs_trace.3x ├── curs_util.3x ├── curs_variables.3x ├── curs_window.3x ├── default_colors.3x ├── define_key.3x ├── form.3x ├── form_cursor.3x ├── form_data.3x ├── form_driver.3x ├── form_field.3x ├── form_field_attributes.3x ├── form_field_buffer.3x ├── form_field_info.3x ├── form_field_just.3x ├── form_field_new.3x ├── form_field_opts.3x ├── form_field_userptr.3x ├── form_field_validation.3x ├── form_fieldtype.3x ├── form_hook.3x ├── form_new.3x ├── form_new_page.3x ├── form_opts.3x ├── form_page.3x ├── form_post.3x ├── form_requestname.3x ├── form_userptr.3x ├── form_variables.3x ├── form_win.3x ├── infocmp.1m ├── infotocap.1m ├── key_defined.3x ├── keybound.3x ├── keyok.3x ├── legacy_coding.3x ├── make_sed.sh ├── man_db.renames ├── manhtml.aliases ├── manhtml.externs ├── manlinks.sed ├── menu.3x ├── menu_attributes.3x ├── menu_cursor.3x ├── menu_driver.3x ├── menu_format.3x ├── menu_hook.3x ├── menu_items.3x ├── menu_mark.3x ├── menu_new.3x ├── menu_opts.3x ├── menu_pattern.3x ├── menu_post.3x ├── menu_requestname.3x ├── menu_spacing.3x ├── menu_userptr.3x ├── menu_win.3x ├── mitem_current.3x ├── mitem_name.3x ├── mitem_new.3x ├── mitem_opts.3x ├── mitem_userptr.3x ├── mitem_value.3x ├── mitem_visible.3x ├── ncurses.3x ├── ncurses6-config.1 ├── panel.3x ├── resizeterm.3x ├── tabs.1 ├── term.5 ├── term.7 ├── term_variables.3x ├── terminfo.5 ├── terminfo.head ├── terminfo.tail ├── tic.1m ├── toe.1m ├── tput.1 ├── tset.1 └── wresize.3x ├── menu ├── Makefile ├── Makefile.in ├── READ.ME ├── eti.h ├── headers ├── llib-lmenu ├── llib-lmenut ├── llib-lmenutw ├── llib-lmenuw ├── m_attribs.c ├── m_cursor.c ├── m_driver.c ├── m_format.c ├── m_global.c ├── m_hook.c ├── m_item_cur.c ├── m_item_nam.c ├── m_item_new.c ├── m_item_opt.c ├── m_item_top.c ├── m_item_use.c ├── m_item_val.c ├── m_item_vis.c ├── m_items.c ├── m_new.c ├── m_opts.c ├── m_pad.c ├── m_pattern.c ├── m_post.c ├── m_req_name.c ├── m_scale.c ├── m_spacing.c ├── m_sub.c ├── m_trace.c ├── m_userptr.c ├── m_win.c ├── menu.h ├── menu.priv.h ├── mf_common.h └── modules ├── misc ├── Makefile ├── Makefile.in ├── chkdef.cmd ├── cleantic.cmd ├── cmpdef.cmd ├── csort ├── emx.src ├── form.def ├── form.ref ├── gen-pkgconfig.in ├── gen_edit.sh ├── magic ├── makedef.cmd ├── makellib ├── menu.def ├── menu.ref ├── ncurses-config ├── ncurses-config.in ├── ncurses.def ├── ncurses.ref ├── ncurses.supp ├── panel.def ├── panel.ref ├── run_tic.in ├── run_tic.sed ├── run_tic.sh ├── shlib ├── tabset │ ├── std │ ├── stdcrt │ ├── vt100 │ └── vt300 ├── tdlint ├── terminfo.src └── terminfo.tmp ├── mk-0th.awk ├── mk-1st.awk ├── mk-2nd.awk ├── mk-hdr.awk ├── ncurses ├── Makefile ├── Makefile.in ├── README ├── README.IZ ├── SigAction.h ├── base │ ├── MKkeyname.awk │ ├── MKlib_gen.sh │ ├── MKunctrl.awk │ ├── README │ ├── define_key.c │ ├── key_defined.c │ ├── keybound.c │ ├── keyok.c │ ├── legacy_coding.c │ ├── lib_addch.c │ ├── lib_addstr.c │ ├── lib_beep.c │ ├── lib_bkgd.c │ ├── lib_box.c │ ├── lib_chgat.c │ ├── lib_clear.c │ ├── lib_clearok.c │ ├── lib_clrbot.c │ ├── lib_clreol.c │ ├── lib_color.c │ ├── lib_colorset.c │ ├── lib_delch.c │ ├── lib_delwin.c │ ├── lib_dft_fgbg.c │ ├── lib_driver.c │ ├── lib_echo.c │ ├── lib_endwin.c │ ├── lib_erase.c │ ├── lib_flash.c │ ├── lib_freeall.c │ ├── lib_getch.c │ ├── lib_getstr.c │ ├── lib_hline.c │ ├── lib_immedok.c │ ├── lib_inchstr.c │ ├── lib_initscr.c │ ├── lib_insch.c │ ├── lib_insdel.c │ ├── lib_insnstr.c │ ├── lib_instr.c │ ├── lib_isendwin.c │ ├── lib_leaveok.c │ ├── lib_mouse.c │ ├── lib_move.c │ ├── lib_mvwin.c │ ├── lib_newterm.c │ ├── lib_newwin.c │ ├── lib_nl.c │ ├── lib_overlay.c │ ├── lib_pad.c │ ├── lib_printw.c │ ├── lib_redrawln.c │ ├── lib_refresh.c │ ├── lib_restart.c │ ├── lib_scanw.c │ ├── lib_screen.c │ ├── lib_scroll.c │ ├── lib_scrollok.c │ ├── lib_scrreg.c │ ├── lib_set_term.c │ ├── lib_slk.c │ ├── lib_slkatr_set.c │ ├── lib_slkatrof.c │ ├── lib_slkatron.c │ ├── lib_slkatrset.c │ ├── lib_slkattr.c │ ├── lib_slkclear.c │ ├── lib_slkcolor.c │ ├── lib_slkinit.c │ ├── lib_slklab.c │ ├── lib_slkrefr.c │ ├── lib_slkset.c │ ├── lib_slktouch.c │ ├── lib_touch.c │ ├── lib_ungetch.c │ ├── lib_vline.c │ ├── lib_wattroff.c │ ├── lib_wattron.c │ ├── lib_winch.c │ ├── lib_window.c │ ├── nc_panel.c │ ├── resizeterm.c │ ├── safe_sprintf.c │ ├── sigaction.c │ ├── tries.c │ ├── use_window.c │ ├── version.c │ ├── vsscanf.c │ └── wresize.c ├── build.priv.h ├── codes.c ├── comp_captab.c ├── curses.priv.h ├── expanded.c ├── fallback.c ├── fifo_defs.h ├── init_keytry.h ├── keys.list ├── lib_gen.c ├── lib_keyname.c ├── link_test.c ├── llib-lncurses ├── llib-lncursest ├── llib-lncursestw ├── llib-lncursesw ├── llib-ltic ├── llib-ltict ├── llib-ltictw ├── llib-lticw ├── llib-ltinfo ├── llib-ltinfot ├── llib-ltinfotw ├── llib-ltinfow ├── make_hash ├── make_keys ├── modules ├── names.c ├── tinfo │ ├── MKcaptab.awk │ ├── MKcaptab.sh │ ├── MKcodes.awk │ ├── MKfallback.sh │ ├── MKkeys_list.sh │ ├── MKnames.awk │ ├── README │ ├── access.c │ ├── add_tries.c │ ├── alloc_entry.c │ ├── alloc_ttype.c │ ├── captoinfo.c │ ├── comp_error.c │ ├── comp_expand.c │ ├── comp_hash.c │ ├── comp_parse.c │ ├── comp_scan.c │ ├── db_iterator.c │ ├── doalloc.c │ ├── entries.c │ ├── free_ttype.c │ ├── getenv_num.c │ ├── hashed_db.c │ ├── home_terminfo.c │ ├── init_keytry.c │ ├── lib_acs.c │ ├── lib_baudrate.c │ ├── lib_cur_term.c │ ├── lib_data.c │ ├── lib_has_cap.c │ ├── lib_kernel.c │ ├── lib_longname.c │ ├── lib_napms.c │ ├── lib_options.c │ ├── lib_print.c │ ├── lib_raw.c │ ├── lib_setup.c │ ├── lib_termcap.c │ ├── lib_termname.c │ ├── lib_tgoto.c │ ├── lib_ti.c │ ├── lib_tparm.c │ ├── lib_tputs.c │ ├── lib_ttyflags.c │ ├── make_hash.c │ ├── make_keys.c │ ├── name_match.c │ ├── obsolete.c │ ├── parse_entry.c │ ├── read_entry.c │ ├── read_termcap.c │ ├── strings.c │ ├── tinfo_driver.c │ ├── trim_sgr0.c │ ├── use_screen.c │ └── write_entry.c ├── trace │ ├── README │ ├── lib_trace.c │ ├── lib_traceatr.c │ ├── lib_tracebits.c │ ├── lib_tracechr.c │ ├── lib_tracedmp.c │ ├── lib_tracemse.c │ ├── trace_buf.c │ ├── trace_tries.c │ ├── trace_xnames.c │ ├── varargs.c │ └── visbuf.c ├── tty │ ├── MKexpanded.sh │ ├── hardscroll.c │ ├── hashmap.c │ ├── lib_mvcur.c │ ├── lib_tstp.c │ ├── lib_twait.c │ ├── lib_vidattr.c │ └── tty_update.c ├── unctrl.c ├── wcwidth.h ├── widechar │ ├── charable.c │ ├── lib_add_wch.c │ ├── lib_box_set.c │ ├── lib_cchar.c │ ├── lib_erasewchar.c │ ├── lib_get_wch.c │ ├── lib_get_wstr.c │ ├── lib_hline_set.c │ ├── lib_in_wch.c │ ├── lib_in_wchnstr.c │ ├── lib_ins_wch.c │ ├── lib_inwstr.c │ ├── lib_key_name.c │ ├── lib_pecho_wchar.c │ ├── lib_slk_wset.c │ ├── lib_unget_wch.c │ ├── lib_vid_attr.c │ ├── lib_vline_set.c │ ├── lib_wacs.c │ ├── lib_wunctrl.c │ └── widechars.c └── win32con │ ├── gettimeofday.c │ ├── wcwidth.c │ └── win_driver.c ├── package ├── debian-mingw │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── watch ├── debian-mingw64 │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── watch ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── watch ├── mingw-ncurses.nsi ├── mingw-ncurses.spec ├── ncurses.map ├── ncurses.spec ├── ncurses.sym ├── ncursest.map ├── ncursest.sym ├── ncursestw.map ├── ncursestw.sym ├── ncursesw.map └── ncursesw.sym ├── panel ├── Makefile ├── Makefile.in ├── headers ├── llib-lpanel ├── llib-lpanelt ├── llib-lpaneltw ├── llib-lpanelw ├── modules ├── p_above.c ├── p_below.c ├── p_bottom.c ├── p_delete.c ├── p_hidden.c ├── p_hide.c ├── p_move.c ├── p_new.c ├── p_replace.c ├── p_show.c ├── p_top.c ├── p_update.c ├── p_user.c ├── p_win.c ├── panel.c ├── panel.h └── panel.priv.h ├── progs ├── MKtermsort.sh ├── Makefile ├── Makefile.in ├── capconvert ├── clear ├── clear.c ├── clear.sh ├── dump_entry.c ├── dump_entry.h ├── infocmp ├── infocmp.c ├── modules ├── progs.priv.h ├── tabs ├── tabs.c ├── termsort.c ├── tic ├── tic.c ├── toe ├── toe.c ├── tparm_type.c ├── tparm_type.h ├── tput ├── tput.c ├── transform.c ├── transform.h ├── tset └── tset.c └── test ├── Makefile ├── Makefile.in ├── README ├── aclocal.m4 ├── background ├── background.c ├── blue ├── blue.c ├── bs ├── bs.6 ├── bs.c ├── bulgarian-utf8.txt ├── cardfile.c ├── cardfile.dat ├── chgat.c ├── clip_printw.c ├── color_name.h ├── color_set.c ├── configure ├── configure.in ├── demo_altkeys.c ├── demo_defkey.c ├── demo_forms.c ├── demo_forms.txt ├── demo_keyok.c ├── demo_menus.c ├── demo_panels.c ├── demo_termcap.c ├── demo_terminfo.c ├── ditto.c ├── dots.c ├── dots_curses.c ├── dots_mvcur.c ├── dots_termcap.c ├── echochar.c ├── edit_field.c ├── edit_field.h ├── filter.c ├── firework.c ├── firstlast.c ├── foldkeys.c ├── form_driver_w.c ├── gdc.6 ├── gdc.c ├── hanoi.c ├── hashtest.c ├── inch_wide.c ├── inchs.c ├── ins_wide.c ├── insdelln.c ├── inserts.c ├── key_names.c ├── keynames.c ├── knight.c ├── linedata.h ├── linux-color.dat ├── listused.sh ├── lrtest.c ├── make-tar.sh ├── mk-test.awk ├── modules ├── movewindow.c ├── ncurses.c ├── ncurses_tst.hin ├── newdemo.c ├── package ├── debian-mingw │ ├── compat │ ├── control │ ├── copyright │ ├── docs │ ├── rules │ ├── source │ │ └── format │ └── watch ├── debian-mingw64 │ ├── compat │ ├── control │ ├── copyright │ ├── docs │ ├── rules │ ├── source │ │ └── format │ └── watch ├── debian │ ├── compat │ ├── control │ ├── copyright │ ├── docs │ ├── rules │ ├── source │ │ └── format │ └── watch ├── mingw-ncurses-examples.spec └── ncurses-examples.spec ├── programs ├── railroad.c ├── rain.c ├── redraw.c ├── savescreen.c ├── savescreen.sh ├── tclock.c ├── test.priv.h ├── test_add_wchstr.c ├── test_addchstr.c ├── test_addstr.c ├── test_addwstr.c ├── test_arrays.c ├── test_get_wstr.c ├── test_getstr.c ├── test_instr.c ├── test_inwstr.c ├── test_opaque.c ├── test_setupterm.c ├── test_vid_puts.c ├── test_vidputs.c ├── testaddch.c ├── testcurs.c ├── testscanw.c ├── tracemunch ├── view.c ├── widechars-utf8.txt ├── widechars.h ├── worm.c ├── xmas.c ├── xterm-16color.dat ├── xterm-256color.dat └── xterm-88color.dat /Ada95/package/debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Ada95/package/debian/docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /Ada95/package/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /Ada95/package/debian/watch: -------------------------------------------------------------------------------- 1 | version=3 2 | 3 | opts=passive ftp://invisible-island.net/AdaCurses/AdaCurses-([\d.]+)\.tgz \ 4 | debian uupdate 5 | -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 5:0:9 6.0 20150808 2 | -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/include/config.h -------------------------------------------------------------------------------- /include/hashsize.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hashsize.h -- hash and token table constants 3 | */ 4 | 5 | #define CAPTABSIZE 497 6 | #define HASHTABSIZE (497 * 2) 7 | -------------------------------------------------------------------------------- /include/ncurses.h: -------------------------------------------------------------------------------- 1 | curses.h -------------------------------------------------------------------------------- /lib/libform.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/libform.a -------------------------------------------------------------------------------- /lib/libform_g.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/libform_g.a -------------------------------------------------------------------------------- /lib/libmenu.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/libmenu.a -------------------------------------------------------------------------------- /lib/libmenu_g.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/libmenu_g.a -------------------------------------------------------------------------------- /lib/libncurses.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/libncurses.a -------------------------------------------------------------------------------- /lib/libncurses_g.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/libncurses_g.a -------------------------------------------------------------------------------- /lib/libpanel.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/libpanel.a -------------------------------------------------------------------------------- /lib/libpanel_g.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/libpanel_g.a -------------------------------------------------------------------------------- /lib/terminfo/1/1178: -------------------------------------------------------------------------------- 1 | ../a/adm1178 -------------------------------------------------------------------------------- /lib/terminfo/1/1730-lm: -------------------------------------------------------------------------------- 1 | ../d/diablo1740-lm -------------------------------------------------------------------------------- /lib/terminfo/2/2621: -------------------------------------------------------------------------------- 1 | ../h/hp2621 -------------------------------------------------------------------------------- /lib/terminfo/2/2621-wl: -------------------------------------------------------------------------------- 1 | ../h/hp2621 -------------------------------------------------------------------------------- /lib/terminfo/2/2621A: -------------------------------------------------------------------------------- 1 | ../h/hp2621 -------------------------------------------------------------------------------- /lib/terminfo/2/2621a: -------------------------------------------------------------------------------- 1 | ../h/hp2621 -------------------------------------------------------------------------------- /lib/terminfo/3/386at: -------------------------------------------------------------------------------- 1 | ../a/att6386 -------------------------------------------------------------------------------- /lib/terminfo/3/3b1: -------------------------------------------------------------------------------- 1 | ../a/att7300 -------------------------------------------------------------------------------- /lib/terminfo/4/4025ex: -------------------------------------------------------------------------------- 1 | ../t/tek4025ex -------------------------------------------------------------------------------- /lib/terminfo/4/4027ex: -------------------------------------------------------------------------------- 1 | ../t/tek4025ex -------------------------------------------------------------------------------- /lib/terminfo/4/4410-w: -------------------------------------------------------------------------------- 1 | ../a/att5410-w -------------------------------------------------------------------------------- /lib/terminfo/5/5051: -------------------------------------------------------------------------------- 1 | ../i/ibm-pc -------------------------------------------------------------------------------- /lib/terminfo/5/5410-w: -------------------------------------------------------------------------------- 1 | ../a/att5410-w -------------------------------------------------------------------------------- /lib/terminfo/5/5620: -------------------------------------------------------------------------------- 1 | ../a/att5620 -------------------------------------------------------------------------------- /lib/terminfo/5/5630-24: -------------------------------------------------------------------------------- 1 | ../a/att630-24 -------------------------------------------------------------------------------- /lib/terminfo/5/5630DMD-24: -------------------------------------------------------------------------------- 1 | ../a/att630-24 -------------------------------------------------------------------------------- /lib/terminfo/6/6053: -------------------------------------------------------------------------------- 1 | ../d/dg6053 -------------------------------------------------------------------------------- /lib/terminfo/6/6053-dg: -------------------------------------------------------------------------------- 1 | ../d/dg6053 -------------------------------------------------------------------------------- /lib/terminfo/6/605x: -------------------------------------------------------------------------------- 1 | ../d/dg6053 -------------------------------------------------------------------------------- /lib/terminfo/6/605x-dg: -------------------------------------------------------------------------------- 1 | ../d/dg6053 -------------------------------------------------------------------------------- /lib/terminfo/6/630-lm: -------------------------------------------------------------------------------- 1 | ../d/diablo1740-lm -------------------------------------------------------------------------------- /lib/terminfo/6/630MTG-24: -------------------------------------------------------------------------------- 1 | ../a/att630-24 -------------------------------------------------------------------------------- /lib/terminfo/7/730MTG-24: -------------------------------------------------------------------------------- 1 | ../a/att730-24 -------------------------------------------------------------------------------- /lib/terminfo/7/730MTG-41: -------------------------------------------------------------------------------- 1 | ../a/att730-41 -------------------------------------------------------------------------------- /lib/terminfo/7/730MTG-41r: -------------------------------------------------------------------------------- 1 | ../a/att730r-41 -------------------------------------------------------------------------------- /lib/terminfo/7/730MTGr: -------------------------------------------------------------------------------- 1 | ../a/att730r -------------------------------------------------------------------------------- /lib/terminfo/7/730MTGr-24: -------------------------------------------------------------------------------- 1 | ../a/att730r-24 -------------------------------------------------------------------------------- /lib/terminfo/8/8510: -------------------------------------------------------------------------------- 1 | ../c/citoh -------------------------------------------------------------------------------- /lib/terminfo/9/955-hb: -------------------------------------------------------------------------------- 1 | ../t/tvi955-hb -------------------------------------------------------------------------------- /lib/terminfo/9/955-w: -------------------------------------------------------------------------------- 1 | ../t/tvi955-w -------------------------------------------------------------------------------- /lib/terminfo/9/9term: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/9/9term -------------------------------------------------------------------------------- /lib/terminfo/A/Apple_Terminal: -------------------------------------------------------------------------------- 1 | ../n/nsterm -------------------------------------------------------------------------------- /lib/terminfo/E/Eterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/E/Eterm -------------------------------------------------------------------------------- /lib/terminfo/E/Eterm-color: -------------------------------------------------------------------------------- 1 | Eterm -------------------------------------------------------------------------------- /lib/terminfo/L/LFT-PC850: -------------------------------------------------------------------------------- 1 | ../l/lft -------------------------------------------------------------------------------- /lib/terminfo/M/MtxOrb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/M/MtxOrb -------------------------------------------------------------------------------- /lib/terminfo/N/NCRVT100WPP: -------------------------------------------------------------------------------- 1 | ../n/ncrvt100wan -------------------------------------------------------------------------------- /lib/terminfo/P/P12: -------------------------------------------------------------------------------- 1 | ../p/prism12 -------------------------------------------------------------------------------- /lib/terminfo/P/P12-M: -------------------------------------------------------------------------------- 1 | ../p/prism12-m -------------------------------------------------------------------------------- /lib/terminfo/P/P12-M-W: -------------------------------------------------------------------------------- 1 | ../p/prism12-m-w -------------------------------------------------------------------------------- /lib/terminfo/P/P12-W: -------------------------------------------------------------------------------- 1 | ../p/prism12-w -------------------------------------------------------------------------------- /lib/terminfo/P/P14: -------------------------------------------------------------------------------- 1 | ../p/prism14 -------------------------------------------------------------------------------- /lib/terminfo/P/P14-M: -------------------------------------------------------------------------------- 1 | ../p/prism14-m -------------------------------------------------------------------------------- /lib/terminfo/P/P14-M-W: -------------------------------------------------------------------------------- 1 | ../p/prism14-m-w -------------------------------------------------------------------------------- /lib/terminfo/P/P14-W: -------------------------------------------------------------------------------- 1 | ../p/prism14-w -------------------------------------------------------------------------------- /lib/terminfo/P/P4: -------------------------------------------------------------------------------- 1 | ../p/prism4 -------------------------------------------------------------------------------- /lib/terminfo/P/P5: -------------------------------------------------------------------------------- 1 | ../p/prism5 -------------------------------------------------------------------------------- /lib/terminfo/P/P7: -------------------------------------------------------------------------------- 1 | ../p/prism7 -------------------------------------------------------------------------------- /lib/terminfo/P/P8: -------------------------------------------------------------------------------- 1 | ../p/prism8 -------------------------------------------------------------------------------- /lib/terminfo/P/P8-W: -------------------------------------------------------------------------------- 1 | ../p/prism8-w -------------------------------------------------------------------------------- /lib/terminfo/P/P9: -------------------------------------------------------------------------------- 1 | ../p/prism9 -------------------------------------------------------------------------------- /lib/terminfo/P/P9-8: -------------------------------------------------------------------------------- 1 | ../p/prism9-8 -------------------------------------------------------------------------------- /lib/terminfo/P/P9-8-W: -------------------------------------------------------------------------------- 1 | ../p/prism9-8-w -------------------------------------------------------------------------------- /lib/terminfo/P/P9-W: -------------------------------------------------------------------------------- 1 | ../p/prism9-w -------------------------------------------------------------------------------- /lib/terminfo/Q/Q306-8-pc: -------------------------------------------------------------------------------- 1 | ../b/bq300-8-pc -------------------------------------------------------------------------------- /lib/terminfo/Q/Q310-vip-H: -------------------------------------------------------------------------------- 1 | ../v/vip-H -------------------------------------------------------------------------------- /lib/terminfo/Q/Q310-vip-H-am: -------------------------------------------------------------------------------- 1 | ../v/vip-H -------------------------------------------------------------------------------- /lib/terminfo/Q/Q310-vip-Hw: -------------------------------------------------------------------------------- 1 | ../v/vip-Hw -------------------------------------------------------------------------------- /lib/terminfo/Q/Q310-vip-w: -------------------------------------------------------------------------------- 1 | ../v/vip-w -------------------------------------------------------------------------------- /lib/terminfo/Q/Q310-vip-w-am: -------------------------------------------------------------------------------- 1 | ../v/vip-w -------------------------------------------------------------------------------- /lib/terminfo/X/X-hpterm: -------------------------------------------------------------------------------- 1 | ../h/hpterm -------------------------------------------------------------------------------- /lib/terminfo/a/a210: -------------------------------------------------------------------------------- 1 | ampex210 -------------------------------------------------------------------------------- /lib/terminfo/a/a80: -------------------------------------------------------------------------------- 1 | ampex80 -------------------------------------------------------------------------------- /lib/terminfo/a/a980: -------------------------------------------------------------------------------- 1 | adds980 -------------------------------------------------------------------------------- /lib/terminfo/a/aa4080: -------------------------------------------------------------------------------- 1 | annarbor4080 -------------------------------------------------------------------------------- /lib/terminfo/a/aaa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/aaa -------------------------------------------------------------------------------- /lib/terminfo/a/aaa+rv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/aaa+rv -------------------------------------------------------------------------------- /lib/terminfo/a/aaa-18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/aaa-18 -------------------------------------------------------------------------------- /lib/terminfo/a/aaa-20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/aaa-20 -------------------------------------------------------------------------------- /lib/terminfo/a/aaa-22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/aaa-22 -------------------------------------------------------------------------------- /lib/terminfo/a/aaa-24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/aaa-24 -------------------------------------------------------------------------------- /lib/terminfo/a/aaa-26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/aaa-26 -------------------------------------------------------------------------------- /lib/terminfo/a/aaa-28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/aaa-28 -------------------------------------------------------------------------------- /lib/terminfo/a/aaa-30: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /lib/terminfo/a/aaa-30-s-ctxt: -------------------------------------------------------------------------------- 1 | aaa-s-ctxt -------------------------------------------------------------------------------- /lib/terminfo/a/aaa-30-s-rv-ct: -------------------------------------------------------------------------------- 1 | aaa-s-rv-ctxt -------------------------------------------------------------------------------- /lib/terminfo/a/aaa-36: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/aaa-36 -------------------------------------------------------------------------------- /lib/terminfo/a/aaa-40: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/aaa-40 -------------------------------------------------------------------------------- /lib/terminfo/a/aaa-48: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/aaa-48 -------------------------------------------------------------------------------- /lib/terminfo/a/aaa-60: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/aaa-60 -------------------------------------------------------------------------------- /lib/terminfo/a/aaa-ctxt: -------------------------------------------------------------------------------- 1 | aaa-30-ctxt -------------------------------------------------------------------------------- /lib/terminfo/a/aaa-db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/aaa-db -------------------------------------------------------------------------------- /lib/terminfo/a/aaa-rv: -------------------------------------------------------------------------------- 1 | aaa-30-rv -------------------------------------------------------------------------------- /lib/terminfo/a/aaa-rv-ctxt: -------------------------------------------------------------------------------- 1 | aaa-30-rv-ctxt -------------------------------------------------------------------------------- /lib/terminfo/a/aaa-s: -------------------------------------------------------------------------------- 1 | aaa-30-s -------------------------------------------------------------------------------- /lib/terminfo/a/aaa-s-rv: -------------------------------------------------------------------------------- 1 | aaa-30-s-rv -------------------------------------------------------------------------------- /lib/terminfo/a/aaa-unk: -------------------------------------------------------------------------------- 1 | aaa+unk -------------------------------------------------------------------------------- /lib/terminfo/a/abm80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/abm80 -------------------------------------------------------------------------------- /lib/terminfo/a/abm85: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/abm85 -------------------------------------------------------------------------------- /lib/terminfo/a/abm85e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/abm85e -------------------------------------------------------------------------------- /lib/terminfo/a/abm85h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/abm85h -------------------------------------------------------------------------------- /lib/terminfo/a/act4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/act4 -------------------------------------------------------------------------------- /lib/terminfo/a/act5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/act5 -------------------------------------------------------------------------------- /lib/terminfo/a/addsviewpoint: -------------------------------------------------------------------------------- 1 | ../v/viewpoint -------------------------------------------------------------------------------- /lib/terminfo/a/addsvp60: -------------------------------------------------------------------------------- 1 | ../v/vp60 -------------------------------------------------------------------------------- /lib/terminfo/a/adm1: -------------------------------------------------------------------------------- 1 | adm1a -------------------------------------------------------------------------------- /lib/terminfo/a/adm11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/adm11 -------------------------------------------------------------------------------- /lib/terminfo/a/adm12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/adm12 -------------------------------------------------------------------------------- /lib/terminfo/a/adm1a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/adm1a -------------------------------------------------------------------------------- /lib/terminfo/a/adm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/adm2 -------------------------------------------------------------------------------- /lib/terminfo/a/adm20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/adm20 -------------------------------------------------------------------------------- /lib/terminfo/a/adm21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/adm21 -------------------------------------------------------------------------------- /lib/terminfo/a/adm22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/adm22 -------------------------------------------------------------------------------- /lib/terminfo/a/adm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/adm3 -------------------------------------------------------------------------------- /lib/terminfo/a/adm31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/adm31 -------------------------------------------------------------------------------- /lib/terminfo/a/adm36: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/adm36 -------------------------------------------------------------------------------- /lib/terminfo/a/adm3a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/adm3a -------------------------------------------------------------------------------- /lib/terminfo/a/adm3a+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/adm3a+ -------------------------------------------------------------------------------- /lib/terminfo/a/adm42: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/adm42 -------------------------------------------------------------------------------- /lib/terminfo/a/aj: -------------------------------------------------------------------------------- 1 | aj830 -------------------------------------------------------------------------------- /lib/terminfo/a/aj832: -------------------------------------------------------------------------------- 1 | aj830 -------------------------------------------------------------------------------- /lib/terminfo/a/alt2: -------------------------------------------------------------------------------- 1 | altos2 -------------------------------------------------------------------------------- /lib/terminfo/a/alt3: -------------------------------------------------------------------------------- 1 | altos3 -------------------------------------------------------------------------------- /lib/terminfo/a/alt4: -------------------------------------------------------------------------------- 1 | altos4 -------------------------------------------------------------------------------- /lib/terminfo/a/alt5: -------------------------------------------------------------------------------- 1 | altos3 -------------------------------------------------------------------------------- /lib/terminfo/a/alt7: -------------------------------------------------------------------------------- 1 | altos7 -------------------------------------------------------------------------------- /lib/terminfo/a/alt7pc: -------------------------------------------------------------------------------- 1 | altos7pc -------------------------------------------------------------------------------- /lib/terminfo/a/alto-heath: -------------------------------------------------------------------------------- 1 | alto-h19 -------------------------------------------------------------------------------- /lib/terminfo/a/altoh19: -------------------------------------------------------------------------------- 1 | alto-h19 -------------------------------------------------------------------------------- /lib/terminfo/a/altoheath: -------------------------------------------------------------------------------- 1 | alto-h19 -------------------------------------------------------------------------------- /lib/terminfo/a/altos-2: -------------------------------------------------------------------------------- 1 | altos2 -------------------------------------------------------------------------------- /lib/terminfo/a/altos-3: -------------------------------------------------------------------------------- 1 | altos3 -------------------------------------------------------------------------------- /lib/terminfo/a/altos-4: -------------------------------------------------------------------------------- 1 | altos4 -------------------------------------------------------------------------------- /lib/terminfo/a/altos-5: -------------------------------------------------------------------------------- 1 | altos3 -------------------------------------------------------------------------------- /lib/terminfo/a/altos5: -------------------------------------------------------------------------------- 1 | altos3 -------------------------------------------------------------------------------- /lib/terminfo/a/ambas: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /lib/terminfo/a/ambassador: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /lib/terminfo/a/amp219: -------------------------------------------------------------------------------- 1 | ampex219 -------------------------------------------------------------------------------- /lib/terminfo/a/amp219w: -------------------------------------------------------------------------------- 1 | ampex219w -------------------------------------------------------------------------------- /lib/terminfo/a/ampex-219: -------------------------------------------------------------------------------- 1 | ampex219 -------------------------------------------------------------------------------- /lib/terminfo/a/ampex-219w: -------------------------------------------------------------------------------- 1 | ampex219w -------------------------------------------------------------------------------- /lib/terminfo/a/ampex-232: -------------------------------------------------------------------------------- 1 | ampex232 -------------------------------------------------------------------------------- /lib/terminfo/a/ansi-mono: -------------------------------------------------------------------------------- 1 | ansi-m -------------------------------------------------------------------------------- /lib/terminfo/a/ansi43m: -------------------------------------------------------------------------------- 1 | ../p/pcansi-43-m -------------------------------------------------------------------------------- /lib/terminfo/a/ansi80x25: -------------------------------------------------------------------------------- 1 | ../c/cons25 -------------------------------------------------------------------------------- /lib/terminfo/a/ansi80x25-mono: -------------------------------------------------------------------------------- 1 | ../c/cons25-m -------------------------------------------------------------------------------- /lib/terminfo/a/ansi80x25-raw: -------------------------------------------------------------------------------- 1 | ../c/cons25w -------------------------------------------------------------------------------- /lib/terminfo/a/ansi80x30: -------------------------------------------------------------------------------- 1 | ../c/cons30 -------------------------------------------------------------------------------- /lib/terminfo/a/ansi80x30-mono: -------------------------------------------------------------------------------- 1 | ../c/cons30-m -------------------------------------------------------------------------------- /lib/terminfo/a/ansi80x43: -------------------------------------------------------------------------------- 1 | ../c/cons43 -------------------------------------------------------------------------------- /lib/terminfo/a/ansi80x43-mono: -------------------------------------------------------------------------------- 1 | ../c/cons43-m -------------------------------------------------------------------------------- /lib/terminfo/a/ansi80x50: -------------------------------------------------------------------------------- 1 | ../c/cons50 -------------------------------------------------------------------------------- /lib/terminfo/a/ansi80x50-mono: -------------------------------------------------------------------------------- 1 | ../c/cons50-m -------------------------------------------------------------------------------- /lib/terminfo/a/ansi80x60: -------------------------------------------------------------------------------- 1 | ../c/cons60 -------------------------------------------------------------------------------- /lib/terminfo/a/ansi80x60-mono: -------------------------------------------------------------------------------- 1 | ../c/cons60-m -------------------------------------------------------------------------------- /lib/terminfo/a/ansil: -------------------------------------------------------------------------------- 1 | ../c/cons50 -------------------------------------------------------------------------------- /lib/terminfo/a/ansil-mono: -------------------------------------------------------------------------------- 1 | ../c/cons50-m -------------------------------------------------------------------------------- /lib/terminfo/a/ansis: -------------------------------------------------------------------------------- 1 | ../c/cons25 -------------------------------------------------------------------------------- /lib/terminfo/a/ansis-mono: -------------------------------------------------------------------------------- 1 | ../c/cons25-m -------------------------------------------------------------------------------- /lib/terminfo/a/ansisysk: -------------------------------------------------------------------------------- 1 | ansi.sysk -------------------------------------------------------------------------------- /lib/terminfo/a/ansiw: -------------------------------------------------------------------------------- 1 | ../c/cons25w -------------------------------------------------------------------------------- /lib/terminfo/a/ap-vm80: -------------------------------------------------------------------------------- 1 | apple-vm80 -------------------------------------------------------------------------------- /lib/terminfo/a/apl: -------------------------------------------------------------------------------- 1 | ../i/ibm-apl -------------------------------------------------------------------------------- /lib/terminfo/a/appleIIc: -------------------------------------------------------------------------------- 1 | appleIIgs -------------------------------------------------------------------------------- /lib/terminfo/a/appleIIe: -------------------------------------------------------------------------------- 1 | appleIIgs -------------------------------------------------------------------------------- /lib/terminfo/a/arm100-am: -------------------------------------------------------------------------------- 1 | arm100 -------------------------------------------------------------------------------- /lib/terminfo/a/arm100-wam: -------------------------------------------------------------------------------- 1 | arm100-w -------------------------------------------------------------------------------- /lib/terminfo/a/at: -------------------------------------------------------------------------------- 1 | ../s/st52 -------------------------------------------------------------------------------- /lib/terminfo/a/at-color: -------------------------------------------------------------------------------- 1 | ../s/st52-color -------------------------------------------------------------------------------- /lib/terminfo/a/at-m: -------------------------------------------------------------------------------- 1 | ../s/st52 -------------------------------------------------------------------------------- /lib/terminfo/a/at386: -------------------------------------------------------------------------------- 1 | att6386 -------------------------------------------------------------------------------- /lib/terminfo/a/atari: -------------------------------------------------------------------------------- 1 | ../s/st52 -------------------------------------------------------------------------------- /lib/terminfo/a/atari-color: -------------------------------------------------------------------------------- 1 | ../s/st52-color -------------------------------------------------------------------------------- /lib/terminfo/a/atari-m: -------------------------------------------------------------------------------- 1 | ../s/st52 -------------------------------------------------------------------------------- /lib/terminfo/a/atari_st: -------------------------------------------------------------------------------- 1 | ../s/st52 -------------------------------------------------------------------------------- /lib/terminfo/a/atari_st-color: -------------------------------------------------------------------------------- 1 | ../s/st52-color -------------------------------------------------------------------------------- /lib/terminfo/a/atarist-m: -------------------------------------------------------------------------------- 1 | ../s/st52 -------------------------------------------------------------------------------- /lib/terminfo/a/att4410-w: -------------------------------------------------------------------------------- 1 | att5410-w -------------------------------------------------------------------------------- /lib/terminfo/a/att4410v1: -------------------------------------------------------------------------------- 1 | att5410v1 -------------------------------------------------------------------------------- /lib/terminfo/a/att4425: -------------------------------------------------------------------------------- 1 | att5425 -------------------------------------------------------------------------------- /lib/terminfo/a/att4425-nl: -------------------------------------------------------------------------------- 1 | att5425-nl -------------------------------------------------------------------------------- /lib/terminfo/a/att4425-w: -------------------------------------------------------------------------------- 1 | att5425-w -------------------------------------------------------------------------------- /lib/terminfo/a/att513: -------------------------------------------------------------------------------- 1 | att500 -------------------------------------------------------------------------------- /lib/terminfo/a/att5320: -------------------------------------------------------------------------------- 1 | att5310 -------------------------------------------------------------------------------- /lib/terminfo/a/att5410: -------------------------------------------------------------------------------- 1 | att4410 -------------------------------------------------------------------------------- /lib/terminfo/a/att5410v1-w: -------------------------------------------------------------------------------- 1 | att4410v1-w -------------------------------------------------------------------------------- /lib/terminfo/a/att5418: -------------------------------------------------------------------------------- 1 | att4418 -------------------------------------------------------------------------------- /lib/terminfo/a/att5418-w: -------------------------------------------------------------------------------- 1 | att4418-w -------------------------------------------------------------------------------- /lib/terminfo/a/att5420: -------------------------------------------------------------------------------- 1 | att4415 -------------------------------------------------------------------------------- /lib/terminfo/a/att5420+nl: -------------------------------------------------------------------------------- 1 | att4415+nl -------------------------------------------------------------------------------- /lib/terminfo/a/att5420-nl: -------------------------------------------------------------------------------- 1 | att4415-nl -------------------------------------------------------------------------------- /lib/terminfo/a/att5420-rv: -------------------------------------------------------------------------------- 1 | att4415-rv -------------------------------------------------------------------------------- /lib/terminfo/a/att5420-rv-nl: -------------------------------------------------------------------------------- 1 | att4415-rv-nl -------------------------------------------------------------------------------- /lib/terminfo/a/att5420-w: -------------------------------------------------------------------------------- 1 | att4415-w -------------------------------------------------------------------------------- /lib/terminfo/a/att5420-w-nl: -------------------------------------------------------------------------------- 1 | att4415-w-nl -------------------------------------------------------------------------------- /lib/terminfo/a/att5420-w-rv: -------------------------------------------------------------------------------- 1 | att4415-w-rv -------------------------------------------------------------------------------- /lib/terminfo/a/att5420-w-rv-n: -------------------------------------------------------------------------------- 1 | att4415-w-rv-n -------------------------------------------------------------------------------- /lib/terminfo/a/att5430: -------------------------------------------------------------------------------- 1 | att505 -------------------------------------------------------------------------------- /lib/terminfo/a/avatar1: -------------------------------------------------------------------------------- 1 | avatar -------------------------------------------------------------------------------- /lib/terminfo/a/avt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/avt -------------------------------------------------------------------------------- /lib/terminfo/a/avt-rv-s: -------------------------------------------------------------------------------- 1 | avt-rv -------------------------------------------------------------------------------- /lib/terminfo/a/avt-s: -------------------------------------------------------------------------------- 1 | avt -------------------------------------------------------------------------------- /lib/terminfo/a/avt-w-rv-s: -------------------------------------------------------------------------------- 1 | avt-w-rv -------------------------------------------------------------------------------- /lib/terminfo/a/avt-w-s: -------------------------------------------------------------------------------- 1 | avt-w -------------------------------------------------------------------------------- /lib/terminfo/a/aws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/a/aws -------------------------------------------------------------------------------- /lib/terminfo/b/b-128: -------------------------------------------------------------------------------- 1 | ../c/commodore -------------------------------------------------------------------------------- /lib/terminfo/b/basic4: -------------------------------------------------------------------------------- 1 | ../m/mai -------------------------------------------------------------------------------- /lib/terminfo/b/bct510a: -------------------------------------------------------------------------------- 1 | ../a/att510a -------------------------------------------------------------------------------- /lib/terminfo/b/bct510d: -------------------------------------------------------------------------------- 1 | ../a/att510d -------------------------------------------------------------------------------- /lib/terminfo/b/bee: -------------------------------------------------------------------------------- 1 | beehive -------------------------------------------------------------------------------- /lib/terminfo/b/beehiveIIIm: -------------------------------------------------------------------------------- 1 | beehive3 -------------------------------------------------------------------------------- /lib/terminfo/b/bg2.0nv: -------------------------------------------------------------------------------- 1 | bitgraph -------------------------------------------------------------------------------- /lib/terminfo/b/bg3.10: -------------------------------------------------------------------------------- 1 | bg2.0 -------------------------------------------------------------------------------- /lib/terminfo/b/bg3.10nv: -------------------------------------------------------------------------------- 1 | bitgraph -------------------------------------------------------------------------------- /lib/terminfo/b/bg3.10rv: -------------------------------------------------------------------------------- 1 | bg2.0rv -------------------------------------------------------------------------------- /lib/terminfo/b/bh3m: -------------------------------------------------------------------------------- 1 | beehive3 -------------------------------------------------------------------------------- /lib/terminfo/b/bh4: -------------------------------------------------------------------------------- 1 | beehive4 -------------------------------------------------------------------------------- /lib/terminfo/b/bsdos-pc-mono: -------------------------------------------------------------------------------- 1 | bsdos-pc-m -------------------------------------------------------------------------------- /lib/terminfo/c/c100-1p: -------------------------------------------------------------------------------- 1 | ../o/oc100 -------------------------------------------------------------------------------- /lib/terminfo/c/c100-4p: -------------------------------------------------------------------------------- 1 | c100 -------------------------------------------------------------------------------- /lib/terminfo/c/c100-rv-4p: -------------------------------------------------------------------------------- 1 | c100-rv -------------------------------------------------------------------------------- /lib/terminfo/c/c104: -------------------------------------------------------------------------------- 1 | c100 -------------------------------------------------------------------------------- /lib/terminfo/c/c108-8p: -------------------------------------------------------------------------------- 1 | c108 -------------------------------------------------------------------------------- /lib/terminfo/c/c108-rv-8p: -------------------------------------------------------------------------------- 1 | c108-rv -------------------------------------------------------------------------------- /lib/terminfo/c/c108-w-8p: -------------------------------------------------------------------------------- 1 | c108-w -------------------------------------------------------------------------------- /lib/terminfo/c/c300: -------------------------------------------------------------------------------- 1 | contel300 -------------------------------------------------------------------------------- /lib/terminfo/c/c301: -------------------------------------------------------------------------------- 1 | contel301 -------------------------------------------------------------------------------- /lib/terminfo/c/c321: -------------------------------------------------------------------------------- 1 | contel301 -------------------------------------------------------------------------------- /lib/terminfo/c/cci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/c/cci -------------------------------------------------------------------------------- /lib/terminfo/c/cci1: -------------------------------------------------------------------------------- 1 | cci -------------------------------------------------------------------------------- /lib/terminfo/c/cgc2: -------------------------------------------------------------------------------- 1 | cad68-2 -------------------------------------------------------------------------------- /lib/terminfo/c/cgc3: -------------------------------------------------------------------------------- 1 | cad68-3 -------------------------------------------------------------------------------- /lib/terminfo/c/chromatics: -------------------------------------------------------------------------------- 1 | cg7900 -------------------------------------------------------------------------------- /lib/terminfo/c/ci8510: -------------------------------------------------------------------------------- 1 | citoh -------------------------------------------------------------------------------- /lib/terminfo/c/cit-80: -------------------------------------------------------------------------------- 1 | cit80 -------------------------------------------------------------------------------- /lib/terminfo/c/citc: -------------------------------------------------------------------------------- 1 | cit101 -------------------------------------------------------------------------------- /lib/terminfo/c/citoh-ps: -------------------------------------------------------------------------------- 1 | citoh-prop -------------------------------------------------------------------------------- /lib/terminfo/c/coherent: -------------------------------------------------------------------------------- 1 | ../p/pc-coherent -------------------------------------------------------------------------------- /lib/terminfo/c/colorscan: -------------------------------------------------------------------------------- 1 | cs10 -------------------------------------------------------------------------------- /lib/terminfo/c/concept: -------------------------------------------------------------------------------- 1 | c100 -------------------------------------------------------------------------------- /lib/terminfo/c/concept-avt: -------------------------------------------------------------------------------- 1 | ../a/avt -------------------------------------------------------------------------------- /lib/terminfo/c/concept100: -------------------------------------------------------------------------------- 1 | c100 -------------------------------------------------------------------------------- /lib/terminfo/c/concept100-rv: -------------------------------------------------------------------------------- 1 | c100-rv -------------------------------------------------------------------------------- /lib/terminfo/c/concept108: -------------------------------------------------------------------------------- 1 | c108 -------------------------------------------------------------------------------- /lib/terminfo/c/concept108-4p: -------------------------------------------------------------------------------- 1 | c108-4p -------------------------------------------------------------------------------- /lib/terminfo/c/concept108-8p: -------------------------------------------------------------------------------- 1 | c108 -------------------------------------------------------------------------------- /lib/terminfo/c/concept108-w-8: -------------------------------------------------------------------------------- 1 | c108-w -------------------------------------------------------------------------------- /lib/terminfo/c/concept108-w8p: -------------------------------------------------------------------------------- 1 | c108-w -------------------------------------------------------------------------------- /lib/terminfo/c/concept108rv4p: -------------------------------------------------------------------------------- 1 | c108-rv-4p -------------------------------------------------------------------------------- /lib/terminfo/c/cons25-iso-m: -------------------------------------------------------------------------------- 1 | cons25l1-m -------------------------------------------------------------------------------- /lib/terminfo/c/cons25-iso8859: -------------------------------------------------------------------------------- 1 | cons25l1 -------------------------------------------------------------------------------- /lib/terminfo/c/cons25-koi8-r: -------------------------------------------------------------------------------- 1 | cons25r -------------------------------------------------------------------------------- /lib/terminfo/c/cons25-koi8r-m: -------------------------------------------------------------------------------- 1 | cons25r-m -------------------------------------------------------------------------------- /lib/terminfo/c/cons50-iso-m: -------------------------------------------------------------------------------- 1 | cons50l1-m -------------------------------------------------------------------------------- /lib/terminfo/c/cons50-iso8859: -------------------------------------------------------------------------------- 1 | cons50l1 -------------------------------------------------------------------------------- /lib/terminfo/c/cons50-koi8r: -------------------------------------------------------------------------------- 1 | cons50r -------------------------------------------------------------------------------- /lib/terminfo/c/cons50-koi8r-m: -------------------------------------------------------------------------------- 1 | cons50r-m -------------------------------------------------------------------------------- /lib/terminfo/c/cons60-iso: -------------------------------------------------------------------------------- 1 | cons60l1 -------------------------------------------------------------------------------- /lib/terminfo/c/cons60-iso-m: -------------------------------------------------------------------------------- 1 | cons60l1-m -------------------------------------------------------------------------------- /lib/terminfo/c/cons60-koi8r: -------------------------------------------------------------------------------- 1 | cons60r -------------------------------------------------------------------------------- /lib/terminfo/c/cons60-koi8r-m: -------------------------------------------------------------------------------- 1 | cons60r-m -------------------------------------------------------------------------------- /lib/terminfo/c/contel320: -------------------------------------------------------------------------------- 1 | contel300 -------------------------------------------------------------------------------- /lib/terminfo/c/contel321: -------------------------------------------------------------------------------- 1 | contel301 -------------------------------------------------------------------------------- /lib/terminfo/c/cops: -------------------------------------------------------------------------------- 1 | cops10 -------------------------------------------------------------------------------- /lib/terminfo/c/cops-10: -------------------------------------------------------------------------------- 1 | cops10 -------------------------------------------------------------------------------- /lib/terminfo/c/crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/c/crt -------------------------------------------------------------------------------- /lib/terminfo/c/crt-vt220: -------------------------------------------------------------------------------- 1 | crt -------------------------------------------------------------------------------- /lib/terminfo/c/ct82: -------------------------------------------------------------------------------- 1 | ../s/swtp -------------------------------------------------------------------------------- /lib/terminfo/c/cx: -------------------------------------------------------------------------------- 1 | color_xterm -------------------------------------------------------------------------------- /lib/terminfo/c/cx100: -------------------------------------------------------------------------------- 1 | color_xterm -------------------------------------------------------------------------------- /lib/terminfo/d/d2: -------------------------------------------------------------------------------- 1 | dg6053 -------------------------------------------------------------------------------- /lib/terminfo/d/d2-dg: -------------------------------------------------------------------------------- 1 | dg6053 -------------------------------------------------------------------------------- /lib/terminfo/d/d200-dg: -------------------------------------------------------------------------------- 1 | d200 -------------------------------------------------------------------------------- /lib/terminfo/d/d214: -------------------------------------------------------------------------------- 1 | d210 -------------------------------------------------------------------------------- /lib/terminfo/d/d214-dg: -------------------------------------------------------------------------------- 1 | d210-dg -------------------------------------------------------------------------------- /lib/terminfo/d/d215: -------------------------------------------------------------------------------- 1 | d211 -------------------------------------------------------------------------------- /lib/terminfo/d/d215-7b: -------------------------------------------------------------------------------- 1 | d211-7b -------------------------------------------------------------------------------- /lib/terminfo/d/d215-dg: -------------------------------------------------------------------------------- 1 | d211-dg -------------------------------------------------------------------------------- /lib/terminfo/d/d216+: -------------------------------------------------------------------------------- 1 | d216-unix -------------------------------------------------------------------------------- /lib/terminfo/d/d216+25: -------------------------------------------------------------------------------- 1 | d216-unix-25 -------------------------------------------------------------------------------- /lib/terminfo/d/d216+dg: -------------------------------------------------------------------------------- 1 | d216-dg -------------------------------------------------------------------------------- /lib/terminfo/d/d216e+: -------------------------------------------------------------------------------- 1 | d216-unix -------------------------------------------------------------------------------- /lib/terminfo/d/d216e+dg: -------------------------------------------------------------------------------- 1 | d216-dg -------------------------------------------------------------------------------- /lib/terminfo/d/d216e-dg: -------------------------------------------------------------------------------- 1 | d216-dg -------------------------------------------------------------------------------- /lib/terminfo/d/d216e-unix: -------------------------------------------------------------------------------- 1 | d216-unix -------------------------------------------------------------------------------- /lib/terminfo/d/d217-dg: -------------------------------------------------------------------------------- 1 | d216-dg -------------------------------------------------------------------------------- /lib/terminfo/d/d230: -------------------------------------------------------------------------------- 1 | d230c -------------------------------------------------------------------------------- /lib/terminfo/d/d230-dg: -------------------------------------------------------------------------------- 1 | d230c-dg -------------------------------------------------------------------------------- /lib/terminfo/d/d400-dg: -------------------------------------------------------------------------------- 1 | d400 -------------------------------------------------------------------------------- /lib/terminfo/d/d411: -------------------------------------------------------------------------------- 1 | d410 -------------------------------------------------------------------------------- /lib/terminfo/d/d411-7b: -------------------------------------------------------------------------------- 1 | d410-7b -------------------------------------------------------------------------------- /lib/terminfo/d/d411-7b-w: -------------------------------------------------------------------------------- 1 | d410-7b-w -------------------------------------------------------------------------------- /lib/terminfo/d/d411-dg: -------------------------------------------------------------------------------- 1 | d410-dg -------------------------------------------------------------------------------- /lib/terminfo/d/d411-w: -------------------------------------------------------------------------------- 1 | d410-w -------------------------------------------------------------------------------- /lib/terminfo/d/d412+: -------------------------------------------------------------------------------- 1 | d412-unix -------------------------------------------------------------------------------- /lib/terminfo/d/d412+25: -------------------------------------------------------------------------------- 1 | d412-unix-25 -------------------------------------------------------------------------------- /lib/terminfo/d/d412+dg: -------------------------------------------------------------------------------- 1 | d412-dg -------------------------------------------------------------------------------- /lib/terminfo/d/d412+s: -------------------------------------------------------------------------------- 1 | d412-unix-s -------------------------------------------------------------------------------- /lib/terminfo/d/d412+sr: -------------------------------------------------------------------------------- 1 | d412-unix-sr -------------------------------------------------------------------------------- /lib/terminfo/d/d412+w: -------------------------------------------------------------------------------- 1 | d412-unix-w -------------------------------------------------------------------------------- /lib/terminfo/d/d413-dg: -------------------------------------------------------------------------------- 1 | d412-dg -------------------------------------------------------------------------------- /lib/terminfo/d/d430-dg: -------------------------------------------------------------------------------- 1 | d430c-dg -------------------------------------------------------------------------------- /lib/terminfo/d/d430-dg-ccc: -------------------------------------------------------------------------------- 1 | d430c-dg-ccc -------------------------------------------------------------------------------- /lib/terminfo/d/d430-unix: -------------------------------------------------------------------------------- 1 | d430c-unix -------------------------------------------------------------------------------- /lib/terminfo/d/d430-unix-25: -------------------------------------------------------------------------------- 1 | d430c-unix-25 -------------------------------------------------------------------------------- /lib/terminfo/d/d430-unix-25-ccc: -------------------------------------------------------------------------------- 1 | d430c-unix-25-ccc -------------------------------------------------------------------------------- /lib/terminfo/d/d430-unix-ccc: -------------------------------------------------------------------------------- 1 | d430c-unix-ccc -------------------------------------------------------------------------------- /lib/terminfo/d/d430-unix-s: -------------------------------------------------------------------------------- 1 | d430c-unix-s -------------------------------------------------------------------------------- /lib/terminfo/d/d430-unix-s-ccc: -------------------------------------------------------------------------------- 1 | d430c-unix-s-ccc -------------------------------------------------------------------------------- /lib/terminfo/d/d430-unix-sr: -------------------------------------------------------------------------------- 1 | d430c-unix-sr -------------------------------------------------------------------------------- /lib/terminfo/d/d430-unix-sr-ccc: -------------------------------------------------------------------------------- 1 | d430c-unix-sr-ccc -------------------------------------------------------------------------------- /lib/terminfo/d/d430-unix-w: -------------------------------------------------------------------------------- 1 | d430c-unix-w -------------------------------------------------------------------------------- /lib/terminfo/d/d430-unix-w-ccc: -------------------------------------------------------------------------------- 1 | d430c-unix-w-ccc -------------------------------------------------------------------------------- /lib/terminfo/d/d450: -------------------------------------------------------------------------------- 1 | d400 -------------------------------------------------------------------------------- /lib/terminfo/d/d450-dg: -------------------------------------------------------------------------------- 1 | d400 -------------------------------------------------------------------------------- /lib/terminfo/d/d460: -------------------------------------------------------------------------------- 1 | d410 -------------------------------------------------------------------------------- /lib/terminfo/d/d460-7b: -------------------------------------------------------------------------------- 1 | d410-7b -------------------------------------------------------------------------------- /lib/terminfo/d/d460-7b-w: -------------------------------------------------------------------------------- 1 | d410-7b-w -------------------------------------------------------------------------------- /lib/terminfo/d/d460-dg: -------------------------------------------------------------------------------- 1 | d410-dg -------------------------------------------------------------------------------- /lib/terminfo/d/d460-w: -------------------------------------------------------------------------------- 1 | d410-w -------------------------------------------------------------------------------- /lib/terminfo/d/d461: -------------------------------------------------------------------------------- 1 | d410 -------------------------------------------------------------------------------- /lib/terminfo/d/d461-7b: -------------------------------------------------------------------------------- 1 | d410-7b -------------------------------------------------------------------------------- /lib/terminfo/d/d461-7b-w: -------------------------------------------------------------------------------- 1 | d410-7b-w -------------------------------------------------------------------------------- /lib/terminfo/d/d461-dg: -------------------------------------------------------------------------------- 1 | d410-dg -------------------------------------------------------------------------------- /lib/terminfo/d/d461-w: -------------------------------------------------------------------------------- 1 | d410-w -------------------------------------------------------------------------------- /lib/terminfo/d/d462+: -------------------------------------------------------------------------------- 1 | d412-unix -------------------------------------------------------------------------------- /lib/terminfo/d/d462+25: -------------------------------------------------------------------------------- 1 | d412-unix-25 -------------------------------------------------------------------------------- /lib/terminfo/d/d462+dg: -------------------------------------------------------------------------------- 1 | d412-dg -------------------------------------------------------------------------------- /lib/terminfo/d/d462+s: -------------------------------------------------------------------------------- 1 | d412-unix-s -------------------------------------------------------------------------------- /lib/terminfo/d/d462+sr: -------------------------------------------------------------------------------- 1 | d412-unix-sr -------------------------------------------------------------------------------- /lib/terminfo/d/d462+w: -------------------------------------------------------------------------------- 1 | d412-unix-w -------------------------------------------------------------------------------- /lib/terminfo/d/d462-dg: -------------------------------------------------------------------------------- 1 | d412-dg -------------------------------------------------------------------------------- /lib/terminfo/d/d462-unix: -------------------------------------------------------------------------------- 1 | d412-unix -------------------------------------------------------------------------------- /lib/terminfo/d/d462-unix-25: -------------------------------------------------------------------------------- 1 | d412-unix-25 -------------------------------------------------------------------------------- /lib/terminfo/d/d462-unix-s: -------------------------------------------------------------------------------- 1 | d412-unix-s -------------------------------------------------------------------------------- /lib/terminfo/d/d462-unix-sr: -------------------------------------------------------------------------------- 1 | d412-unix-sr -------------------------------------------------------------------------------- /lib/terminfo/d/d462-unix-w: -------------------------------------------------------------------------------- 1 | d412-unix-w -------------------------------------------------------------------------------- /lib/terminfo/d/d462e-dg: -------------------------------------------------------------------------------- 1 | d412-dg -------------------------------------------------------------------------------- /lib/terminfo/d/d463-dg: -------------------------------------------------------------------------------- 1 | d412-dg -------------------------------------------------------------------------------- /lib/terminfo/d/d463-unix: -------------------------------------------------------------------------------- 1 | d413-unix -------------------------------------------------------------------------------- /lib/terminfo/d/d463-unix-25: -------------------------------------------------------------------------------- 1 | d413-unix-25 -------------------------------------------------------------------------------- /lib/terminfo/d/d463-unix-s: -------------------------------------------------------------------------------- 1 | d413-unix-s -------------------------------------------------------------------------------- /lib/terminfo/d/d463-unix-sr: -------------------------------------------------------------------------------- 1 | d413-unix-sr -------------------------------------------------------------------------------- /lib/terminfo/d/d463-unix-w: -------------------------------------------------------------------------------- 1 | d413-unix-w -------------------------------------------------------------------------------- /lib/terminfo/d/d464-unix: -------------------------------------------------------------------------------- 1 | d414-unix -------------------------------------------------------------------------------- /lib/terminfo/d/d464-unix-25: -------------------------------------------------------------------------------- 1 | d414-unix-25 -------------------------------------------------------------------------------- /lib/terminfo/d/d464-unix-s: -------------------------------------------------------------------------------- 1 | d414-unix-s -------------------------------------------------------------------------------- /lib/terminfo/d/d464-unix-sr: -------------------------------------------------------------------------------- 1 | d414-unix-sr -------------------------------------------------------------------------------- /lib/terminfo/d/d464-unix-w: -------------------------------------------------------------------------------- 1 | d414-unix-w -------------------------------------------------------------------------------- /lib/terminfo/d/d470: -------------------------------------------------------------------------------- 1 | d470c -------------------------------------------------------------------------------- /lib/terminfo/d/d470-7b: -------------------------------------------------------------------------------- 1 | d470c-7b -------------------------------------------------------------------------------- /lib/terminfo/d/d470-dg: -------------------------------------------------------------------------------- 1 | d470c-dg -------------------------------------------------------------------------------- /lib/terminfo/d/d578-dg: -------------------------------------------------------------------------------- 1 | d577-dg -------------------------------------------------------------------------------- /lib/terminfo/d/d80: -------------------------------------------------------------------------------- 1 | ../a/ampex80 -------------------------------------------------------------------------------- /lib/terminfo/d/darwin: -------------------------------------------------------------------------------- 1 | ../x/xnuppc -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-100x37: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-100x37 -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-100x37-m: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-100x37-m -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-112x37: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-112x37 -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-112x37-m: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-112x37-m -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-128x40: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-128x40 -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-128x40-m: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-128x40-m -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-128x48: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-128x48 -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-128x48-m: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-128x48-m -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-144x48: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-144x48 -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-144x48-m: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-144x48-m -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-160x64: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-160x64 -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-160x64-m: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-160x64-m -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-200x64: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-200x64 -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-200x64-m: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-200x64-m -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-200x75: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-200x75 -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-200x75-m: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-200x75-m -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-256x96: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-256x96 -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-256x96-m: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-256x96-m -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-80x25: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-80x25 -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-80x25-m: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-80x25-m -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-80x30: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-80x30 -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-80x30-m: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-80x30-m -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-90x30: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-90x30 -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-90x30-m: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-90x30-m -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-b: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-b -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-f: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-f -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-f2: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-f2 -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-m: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-m -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-m-b: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-m-b -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-m-f: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-m-f -------------------------------------------------------------------------------- /lib/terminfo/d/darwin-m-f2: -------------------------------------------------------------------------------- 1 | ../x/xnuppc-m-f2 -------------------------------------------------------------------------------- /lib/terminfo/d/datagraphix: -------------------------------------------------------------------------------- 1 | d132 -------------------------------------------------------------------------------- /lib/terminfo/d/datamedia2500: -------------------------------------------------------------------------------- 1 | dm2500 -------------------------------------------------------------------------------- /lib/terminfo/d/datapoint: -------------------------------------------------------------------------------- 1 | dp3360 -------------------------------------------------------------------------------- /lib/terminfo/d/dataspeed40: -------------------------------------------------------------------------------- 1 | ../t/tty40 -------------------------------------------------------------------------------- /lib/terminfo/d/dd5000: -------------------------------------------------------------------------------- 1 | delta -------------------------------------------------------------------------------- /lib/terminfo/d/ddr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/d/ddr -------------------------------------------------------------------------------- /lib/terminfo/d/ddr3180: -------------------------------------------------------------------------------- 1 | ddr -------------------------------------------------------------------------------- /lib/terminfo/d/dec-vt330: -------------------------------------------------------------------------------- 1 | ../v/vt340 -------------------------------------------------------------------------------- /lib/terminfo/d/dec-vt340: -------------------------------------------------------------------------------- 1 | ../v/vt340 -------------------------------------------------------------------------------- /lib/terminfo/d/dec-vt400: -------------------------------------------------------------------------------- 1 | ../v/vt400 -------------------------------------------------------------------------------- /lib/terminfo/d/decpro: -------------------------------------------------------------------------------- 1 | ../p/pro350 -------------------------------------------------------------------------------- /lib/terminfo/d/decwriter: -------------------------------------------------------------------------------- 1 | dw2 -------------------------------------------------------------------------------- /lib/terminfo/d/dg-ansi: -------------------------------------------------------------------------------- 1 | dg210 -------------------------------------------------------------------------------- /lib/terminfo/d/dg100: -------------------------------------------------------------------------------- 1 | dg6053-old -------------------------------------------------------------------------------- /lib/terminfo/d/dg605x: -------------------------------------------------------------------------------- 1 | dg6053 -------------------------------------------------------------------------------- /lib/terminfo/d/dg6134: -------------------------------------------------------------------------------- 1 | dg450 -------------------------------------------------------------------------------- /lib/terminfo/d/diablo: -------------------------------------------------------------------------------- 1 | diablo1640 -------------------------------------------------------------------------------- /lib/terminfo/d/diablo-lm: -------------------------------------------------------------------------------- 1 | diablo1640-lm -------------------------------------------------------------------------------- /lib/terminfo/d/diablo1640-m8: -------------------------------------------------------------------------------- 1 | diablo1620-m8 -------------------------------------------------------------------------------- /lib/terminfo/d/diablo1720: -------------------------------------------------------------------------------- 1 | diablo1620 -------------------------------------------------------------------------------- /lib/terminfo/d/diablo1730: -------------------------------------------------------------------------------- 1 | diablo1640 -------------------------------------------------------------------------------- /lib/terminfo/d/diablo1740: -------------------------------------------------------------------------------- 1 | diablo1640 -------------------------------------------------------------------------------- /lib/terminfo/d/diablo450: -------------------------------------------------------------------------------- 1 | diablo1620 -------------------------------------------------------------------------------- /lib/terminfo/d/diablo630: -------------------------------------------------------------------------------- 1 | diablo1640 -------------------------------------------------------------------------------- /lib/terminfo/d/dialogue: -------------------------------------------------------------------------------- 1 | ../a/ampex80 -------------------------------------------------------------------------------- /lib/terminfo/d/dialogue80: -------------------------------------------------------------------------------- 1 | ../a/ampex80 -------------------------------------------------------------------------------- /lib/terminfo/d/dku7102: -------------------------------------------------------------------------------- 1 | ../t/tws-generic -------------------------------------------------------------------------------- /lib/terminfo/d/dku7102-sna: -------------------------------------------------------------------------------- 1 | ../t/tws2102-sna -------------------------------------------------------------------------------- /lib/terminfo/d/dku7103-sna: -------------------------------------------------------------------------------- 1 | ../t/tws2103-sna -------------------------------------------------------------------------------- /lib/terminfo/d/dm1521: -------------------------------------------------------------------------------- 1 | dm1520 -------------------------------------------------------------------------------- /lib/terminfo/d/dmd: -------------------------------------------------------------------------------- 1 | ../a/att5620 -------------------------------------------------------------------------------- /lib/terminfo/d/dmd-24: -------------------------------------------------------------------------------- 1 | ../a/att5620-24 -------------------------------------------------------------------------------- /lib/terminfo/d/dmd-34: -------------------------------------------------------------------------------- 1 | ../a/att5620-34 -------------------------------------------------------------------------------- /lib/terminfo/d/dmd1: -------------------------------------------------------------------------------- 1 | ../a/att5620-1 -------------------------------------------------------------------------------- /lib/terminfo/d/dmdt80: -------------------------------------------------------------------------------- 1 | dm80 -------------------------------------------------------------------------------- /lib/terminfo/d/dmdt80w: -------------------------------------------------------------------------------- 1 | dm80w -------------------------------------------------------------------------------- /lib/terminfo/d/ds40: -------------------------------------------------------------------------------- 1 | ../t/tty40 -------------------------------------------------------------------------------- /lib/terminfo/d/ds40-2: -------------------------------------------------------------------------------- 1 | ../t/tty40 -------------------------------------------------------------------------------- /lib/terminfo/d/dt-100: -------------------------------------------------------------------------------- 1 | dt100 -------------------------------------------------------------------------------- /lib/terminfo/d/dt-100w: -------------------------------------------------------------------------------- 1 | dt100w -------------------------------------------------------------------------------- /lib/terminfo/d/dt80: -------------------------------------------------------------------------------- 1 | dm80 -------------------------------------------------------------------------------- /lib/terminfo/d/dt80w: -------------------------------------------------------------------------------- 1 | dm80w -------------------------------------------------------------------------------- /lib/terminfo/d/dw: -------------------------------------------------------------------------------- 1 | dw2 -------------------------------------------------------------------------------- /lib/terminfo/d/dw1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/d/dw1 -------------------------------------------------------------------------------- /lib/terminfo/d/dw2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/d/dw2 -------------------------------------------------------------------------------- /lib/terminfo/d/dw3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/d/dw3 -------------------------------------------------------------------------------- /lib/terminfo/d/dw4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/d/dw4 -------------------------------------------------------------------------------- /lib/terminfo/d/dwk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/d/dwk -------------------------------------------------------------------------------- /lib/terminfo/d/dwk-vt: -------------------------------------------------------------------------------- 1 | dwk -------------------------------------------------------------------------------- /lib/terminfo/e/emots: -------------------------------------------------------------------------------- 1 | ../g/gs6300 -------------------------------------------------------------------------------- /lib/terminfo/e/emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/e/emu -------------------------------------------------------------------------------- /lib/terminfo/e/envision230: -------------------------------------------------------------------------------- 1 | env230 -------------------------------------------------------------------------------- /lib/terminfo/e/ep4000: -------------------------------------------------------------------------------- 1 | ep40 -------------------------------------------------------------------------------- /lib/terminfo/e/ep4080: -------------------------------------------------------------------------------- 1 | ep48 -------------------------------------------------------------------------------- /lib/terminfo/e/excel64: -------------------------------------------------------------------------------- 1 | excel62 -------------------------------------------------------------------------------- /lib/terminfo/e/excel64-rv: -------------------------------------------------------------------------------- 1 | excel62-rv -------------------------------------------------------------------------------- /lib/terminfo/e/excel64-w: -------------------------------------------------------------------------------- 1 | excel62-w -------------------------------------------------------------------------------- /lib/terminfo/e/exec80: -------------------------------------------------------------------------------- 1 | ../h/hazel -------------------------------------------------------------------------------- /lib/terminfo/f/f1720a: -------------------------------------------------------------------------------- 1 | f1720 -------------------------------------------------------------------------------- /lib/terminfo/f/fenix: -------------------------------------------------------------------------------- 1 | ../p/pt100 -------------------------------------------------------------------------------- /lib/terminfo/f/fenixw: -------------------------------------------------------------------------------- 1 | ../p/pt100w -------------------------------------------------------------------------------- /lib/terminfo/f/fixterm: -------------------------------------------------------------------------------- 1 | ../c/cbblit -------------------------------------------------------------------------------- /lib/terminfo/f/fortune: -------------------------------------------------------------------------------- 1 | fos -------------------------------------------------------------------------------- /lib/terminfo/f/fos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/f/fos -------------------------------------------------------------------------------- /lib/terminfo/f/fox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/f/fox -------------------------------------------------------------------------------- /lib/terminfo/f/freedom: -------------------------------------------------------------------------------- 1 | f100 -------------------------------------------------------------------------------- /lib/terminfo/f/freedom-rv: -------------------------------------------------------------------------------- 1 | f100-rv -------------------------------------------------------------------------------- /lib/terminfo/f/freedom100: -------------------------------------------------------------------------------- 1 | f100 -------------------------------------------------------------------------------- /lib/terminfo/f/freedom110: -------------------------------------------------------------------------------- 1 | f110 -------------------------------------------------------------------------------- /lib/terminfo/f/freedom200: -------------------------------------------------------------------------------- 1 | f200 -------------------------------------------------------------------------------- /lib/terminfo/g/go-225: -------------------------------------------------------------------------------- 1 | go225 -------------------------------------------------------------------------------- /lib/terminfo/g/gs5430: -------------------------------------------------------------------------------- 1 | ../a/att505 -------------------------------------------------------------------------------- /lib/terminfo/g/gs5430-22: -------------------------------------------------------------------------------- 1 | ../t/tt505-22 -------------------------------------------------------------------------------- /lib/terminfo/g/gs5430-24: -------------------------------------------------------------------------------- 1 | ../a/att505-24 -------------------------------------------------------------------------------- /lib/terminfo/g/gsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/g/gsi -------------------------------------------------------------------------------- /lib/terminfo/g/gt100: -------------------------------------------------------------------------------- 1 | ../i/i100 -------------------------------------------------------------------------------- /lib/terminfo/g/gt100a: -------------------------------------------------------------------------------- 1 | ../i/i100 -------------------------------------------------------------------------------- /lib/terminfo/g/guru+unk: -------------------------------------------------------------------------------- 1 | guru -------------------------------------------------------------------------------- /lib/terminfo/g/guru-33: -------------------------------------------------------------------------------- 1 | guru -------------------------------------------------------------------------------- /lib/terminfo/g/guru-33-rv: -------------------------------------------------------------------------------- 1 | guru-rv -------------------------------------------------------------------------------- /lib/terminfo/g/guru-33-s: -------------------------------------------------------------------------------- 1 | guru-s -------------------------------------------------------------------------------- /lib/terminfo/g/guru-lp: -------------------------------------------------------------------------------- 1 | guru-76-lp -------------------------------------------------------------------------------- /lib/terminfo/h/h-100: -------------------------------------------------------------------------------- 1 | ../z/z100 -------------------------------------------------------------------------------- /lib/terminfo/h/h-100bw: -------------------------------------------------------------------------------- 1 | ../z/z100bw -------------------------------------------------------------------------------- /lib/terminfo/h/h100: -------------------------------------------------------------------------------- 1 | ../z/z100 -------------------------------------------------------------------------------- /lib/terminfo/h/h100bw: -------------------------------------------------------------------------------- 1 | ../z/z100bw -------------------------------------------------------------------------------- /lib/terminfo/h/h19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/h/h19 -------------------------------------------------------------------------------- /lib/terminfo/h/h19-b: -------------------------------------------------------------------------------- 1 | h19 -------------------------------------------------------------------------------- /lib/terminfo/h/h19-smul: -------------------------------------------------------------------------------- 1 | h19-us -------------------------------------------------------------------------------- /lib/terminfo/h/h19a: -------------------------------------------------------------------------------- 1 | h19-a -------------------------------------------------------------------------------- /lib/terminfo/h/h19g: -------------------------------------------------------------------------------- 1 | h19-g -------------------------------------------------------------------------------- /lib/terminfo/h/h19kermit: -------------------------------------------------------------------------------- 1 | h19k -------------------------------------------------------------------------------- /lib/terminfo/h/h19us: -------------------------------------------------------------------------------- 1 | h19-us -------------------------------------------------------------------------------- /lib/terminfo/h/h29a-kc-bc: -------------------------------------------------------------------------------- 1 | ../z/z29a -------------------------------------------------------------------------------- /lib/terminfo/h/h29a-kc-uc: -------------------------------------------------------------------------------- 1 | ../z/z29a-kc-uc -------------------------------------------------------------------------------- /lib/terminfo/h/h29a-nkc-bc: -------------------------------------------------------------------------------- 1 | ../z/z29a-nkc-bc -------------------------------------------------------------------------------- /lib/terminfo/h/h29a-nkc-uc: -------------------------------------------------------------------------------- 1 | ../z/z29a-nkc-uc -------------------------------------------------------------------------------- /lib/terminfo/h/h80: -------------------------------------------------------------------------------- 1 | hazel -------------------------------------------------------------------------------- /lib/terminfo/h/he80: -------------------------------------------------------------------------------- 1 | hazel -------------------------------------------------------------------------------- /lib/terminfo/h/heath: -------------------------------------------------------------------------------- 1 | h19 -------------------------------------------------------------------------------- /lib/terminfo/h/heath-19: -------------------------------------------------------------------------------- 1 | h19 -------------------------------------------------------------------------------- /lib/terminfo/h/heath-ansi: -------------------------------------------------------------------------------- 1 | h19-a -------------------------------------------------------------------------------- /lib/terminfo/h/heathkit: -------------------------------------------------------------------------------- 1 | h19 -------------------------------------------------------------------------------- /lib/terminfo/h/heathkit-a: -------------------------------------------------------------------------------- 1 | h19-a -------------------------------------------------------------------------------- /lib/terminfo/h/hft: -------------------------------------------------------------------------------- 1 | ../i/ibm5081 -------------------------------------------------------------------------------- /lib/terminfo/h/hp: -------------------------------------------------------------------------------- 1 | hpgeneric -------------------------------------------------------------------------------- /lib/terminfo/h/hp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/h/hp2 -------------------------------------------------------------------------------- /lib/terminfo/h/hp2382: -------------------------------------------------------------------------------- 1 | hp2382a -------------------------------------------------------------------------------- /lib/terminfo/h/hp2397: -------------------------------------------------------------------------------- 1 | hp2397a -------------------------------------------------------------------------------- /lib/terminfo/h/hp2621-wl: -------------------------------------------------------------------------------- 1 | hp2621 -------------------------------------------------------------------------------- /lib/terminfo/h/hp2621A: -------------------------------------------------------------------------------- 1 | hp2621 -------------------------------------------------------------------------------- /lib/terminfo/h/hp2621a: -------------------------------------------------------------------------------- 1 | hp2621 -------------------------------------------------------------------------------- /lib/terminfo/h/hp2621a-a: -------------------------------------------------------------------------------- 1 | hp2621-a -------------------------------------------------------------------------------- /lib/terminfo/h/hp2621k45: -------------------------------------------------------------------------------- 1 | hp2621-k45 -------------------------------------------------------------------------------- /lib/terminfo/h/hp2622a: -------------------------------------------------------------------------------- 1 | hp2622 -------------------------------------------------------------------------------- /lib/terminfo/h/hp2623a: -------------------------------------------------------------------------------- 1 | hp2623 -------------------------------------------------------------------------------- /lib/terminfo/h/hp2624a: -------------------------------------------------------------------------------- 1 | hp2624 -------------------------------------------------------------------------------- /lib/terminfo/h/hp2624a-10p: -------------------------------------------------------------------------------- 1 | hp2624-10p -------------------------------------------------------------------------------- /lib/terminfo/h/hp2624b: -------------------------------------------------------------------------------- 1 | hp2624 -------------------------------------------------------------------------------- /lib/terminfo/h/hp2624b-10p: -------------------------------------------------------------------------------- 1 | hp2624-10p -------------------------------------------------------------------------------- /lib/terminfo/h/hp2624b-4p: -------------------------------------------------------------------------------- 1 | hp2624 -------------------------------------------------------------------------------- /lib/terminfo/h/hp2624b-4p-p: -------------------------------------------------------------------------------- 1 | hp2624b-p -------------------------------------------------------------------------------- /lib/terminfo/h/hp2626a: -------------------------------------------------------------------------------- 1 | hp2626 -------------------------------------------------------------------------------- /lib/terminfo/h/hp2626p: -------------------------------------------------------------------------------- 1 | hp2626 -------------------------------------------------------------------------------- /lib/terminfo/h/hp2644a: -------------------------------------------------------------------------------- 1 | hp2640b -------------------------------------------------------------------------------- /lib/terminfo/h/hp2645a: -------------------------------------------------------------------------------- 1 | hp2641a -------------------------------------------------------------------------------- /lib/terminfo/h/hp2647a: -------------------------------------------------------------------------------- 1 | hp2641a -------------------------------------------------------------------------------- /lib/terminfo/h/hp2648a: -------------------------------------------------------------------------------- 1 | hp2648 -------------------------------------------------------------------------------- /lib/terminfo/h/hp45: -------------------------------------------------------------------------------- 1 | hp2645 -------------------------------------------------------------------------------- /lib/terminfo/h/hp700: -------------------------------------------------------------------------------- 1 | hpansi -------------------------------------------------------------------------------- /lib/terminfo/h/hp70092A: -------------------------------------------------------------------------------- 1 | hp70092 -------------------------------------------------------------------------------- /lib/terminfo/h/hp70092a: -------------------------------------------------------------------------------- 1 | hp70092 -------------------------------------------------------------------------------- /lib/terminfo/h/hp98550a: -------------------------------------------------------------------------------- 1 | hp98550 -------------------------------------------------------------------------------- /lib/terminfo/h/hp98720: -------------------------------------------------------------------------------- 1 | hp9837 -------------------------------------------------------------------------------- /lib/terminfo/h/hp98721: -------------------------------------------------------------------------------- 1 | hp9837 -------------------------------------------------------------------------------- /lib/terminfo/h/hpex2: -------------------------------------------------------------------------------- 1 | hp2 -------------------------------------------------------------------------------- /lib/terminfo/h/htx11: -------------------------------------------------------------------------------- 1 | ../z/ztx -------------------------------------------------------------------------------- /lib/terminfo/i/i3101: -------------------------------------------------------------------------------- 1 | ibm3101 -------------------------------------------------------------------------------- /lib/terminfo/i/i3164: -------------------------------------------------------------------------------- 1 | ibm3164 -------------------------------------------------------------------------------- /lib/terminfo/i/ibm3163: -------------------------------------------------------------------------------- 1 | ibm3161 -------------------------------------------------------------------------------- /lib/terminfo/i/ibm5051: -------------------------------------------------------------------------------- 1 | ibm-pc -------------------------------------------------------------------------------- /lib/terminfo/i/ibm5154-c: -------------------------------------------------------------------------------- 1 | ibmega-c -------------------------------------------------------------------------------- /lib/terminfo/i/ibm6154-c: -------------------------------------------------------------------------------- 1 | ibmapa8c-c -------------------------------------------------------------------------------- /lib/terminfo/i/ibm8507: -------------------------------------------------------------------------------- 1 | ibm8503 -------------------------------------------------------------------------------- /lib/terminfo/i/ibm8513: -------------------------------------------------------------------------------- 1 | ibm8512 -------------------------------------------------------------------------------- /lib/terminfo/i/ibm8604: -------------------------------------------------------------------------------- 1 | ibm8503 -------------------------------------------------------------------------------- /lib/terminfo/i/ibmapa16: -------------------------------------------------------------------------------- 1 | ../r/rtpc -------------------------------------------------------------------------------- /lib/terminfo/i/ibmapa8: -------------------------------------------------------------------------------- 1 | ibmapa8c -------------------------------------------------------------------------------- /lib/terminfo/i/ibmmpel-c: -------------------------------------------------------------------------------- 1 | ibm5081-c -------------------------------------------------------------------------------- /lib/terminfo/i/ibmpc3r: -------------------------------------------------------------------------------- 1 | ../c/cons25r -------------------------------------------------------------------------------- /lib/terminfo/i/ibmpc3r-mono: -------------------------------------------------------------------------------- 1 | ../c/cons25r-m -------------------------------------------------------------------------------- /lib/terminfo/i/ibmx: -------------------------------------------------------------------------------- 1 | ibmpcx -------------------------------------------------------------------------------- /lib/terminfo/i/icl6402: -------------------------------------------------------------------------------- 1 | icl6404 -------------------------------------------------------------------------------- /lib/terminfo/i/intertec: -------------------------------------------------------------------------------- 1 | intertube -------------------------------------------------------------------------------- /lib/terminfo/i/intextii: -------------------------------------------------------------------------------- 1 | intext2 -------------------------------------------------------------------------------- /lib/terminfo/i/ips: -------------------------------------------------------------------------------- 1 | ../c/citoh-prop -------------------------------------------------------------------------------- /lib/terminfo/i/ipsi: -------------------------------------------------------------------------------- 1 | ../d/diablo1620 -------------------------------------------------------------------------------- /lib/terminfo/i/iq120: -------------------------------------------------------------------------------- 1 | ../s/soroc120 -------------------------------------------------------------------------------- /lib/terminfo/i/iq140: -------------------------------------------------------------------------------- 1 | ../s/soroc140 -------------------------------------------------------------------------------- /lib/terminfo/i/iris-ansi-net: -------------------------------------------------------------------------------- 1 | iris-ansi -------------------------------------------------------------------------------- /lib/terminfo/i/iris40: -------------------------------------------------------------------------------- 1 | ../w/wsiris -------------------------------------------------------------------------------- /lib/terminfo/i/iterm: -------------------------------------------------------------------------------- 1 | iTerm.app -------------------------------------------------------------------------------- /lib/terminfo/j/jerq: -------------------------------------------------------------------------------- 1 | ../b/blit -------------------------------------------------------------------------------- /lib/terminfo/j/jfbterm: -------------------------------------------------------------------------------- 1 | ../k/kon -------------------------------------------------------------------------------- /lib/terminfo/k/k45: -------------------------------------------------------------------------------- 1 | ../h/hp2621-k45 -------------------------------------------------------------------------------- /lib/terminfo/k/kaypro2: -------------------------------------------------------------------------------- 1 | kaypro -------------------------------------------------------------------------------- /lib/terminfo/k/kds6402: -------------------------------------------------------------------------------- 1 | ../i/icl6404 -------------------------------------------------------------------------------- /lib/terminfo/k/kds7372: -------------------------------------------------------------------------------- 1 | ../i/icl6404 -------------------------------------------------------------------------------- /lib/terminfo/k/kds7372-w: -------------------------------------------------------------------------------- 1 | ../i/icl6404-w -------------------------------------------------------------------------------- /lib/terminfo/k/kon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/k/kon -------------------------------------------------------------------------------- /lib/terminfo/k/kon2: -------------------------------------------------------------------------------- 1 | kon -------------------------------------------------------------------------------- /lib/terminfo/k/kt7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/k/kt7 -------------------------------------------------------------------------------- /lib/terminfo/k/kterm-co: -------------------------------------------------------------------------------- 1 | kterm-color -------------------------------------------------------------------------------- /lib/terminfo/k/ktm: -------------------------------------------------------------------------------- 1 | ../s/synertek -------------------------------------------------------------------------------- /lib/terminfo/k/kvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/k/kvt -------------------------------------------------------------------------------- /lib/terminfo/l/la120: -------------------------------------------------------------------------------- 1 | ../d/dw3 -------------------------------------------------------------------------------- /lib/terminfo/l/layer: -------------------------------------------------------------------------------- 1 | ../a/att5620-s -------------------------------------------------------------------------------- /lib/terminfo/l/lft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/l/lft -------------------------------------------------------------------------------- /lib/terminfo/l/lft-pc850: -------------------------------------------------------------------------------- 1 | lft -------------------------------------------------------------------------------- /lib/terminfo/l/lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/l/lpr -------------------------------------------------------------------------------- /lib/terminfo/l/luna68k: -------------------------------------------------------------------------------- 1 | luna -------------------------------------------------------------------------------- /lib/terminfo/m/mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/m/mac -------------------------------------------------------------------------------- /lib/terminfo/m/macintosh: -------------------------------------------------------------------------------- 1 | mac -------------------------------------------------------------------------------- /lib/terminfo/m/macterminal-w: -------------------------------------------------------------------------------- 1 | mac-w -------------------------------------------------------------------------------- /lib/terminfo/m/mai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/m/mai -------------------------------------------------------------------------------- /lib/terminfo/m/mdl110: -------------------------------------------------------------------------------- 1 | ../c/cyb110 -------------------------------------------------------------------------------- /lib/terminfo/m/mgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/m/mgr -------------------------------------------------------------------------------- /lib/terminfo/m/mgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/m/mgt -------------------------------------------------------------------------------- /lib/terminfo/m/microbee: -------------------------------------------------------------------------------- 1 | microb -------------------------------------------------------------------------------- /lib/terminfo/m/microterm: -------------------------------------------------------------------------------- 1 | ../a/act4 -------------------------------------------------------------------------------- /lib/terminfo/m/microterm5: -------------------------------------------------------------------------------- 1 | ../a/act5 -------------------------------------------------------------------------------- /lib/terminfo/m/mime-3ax: -------------------------------------------------------------------------------- 1 | mime3ax -------------------------------------------------------------------------------- /lib/terminfo/m/mime1: -------------------------------------------------------------------------------- 1 | mime -------------------------------------------------------------------------------- /lib/terminfo/m/mime2: -------------------------------------------------------------------------------- 1 | mime -------------------------------------------------------------------------------- /lib/terminfo/m/mime2a-v: -------------------------------------------------------------------------------- 1 | mime2a -------------------------------------------------------------------------------- /lib/terminfo/m/mime340: -------------------------------------------------------------------------------- 1 | mm340 -------------------------------------------------------------------------------- /lib/terminfo/m/mimei: -------------------------------------------------------------------------------- 1 | mime -------------------------------------------------------------------------------- /lib/terminfo/m/mimeii: -------------------------------------------------------------------------------- 1 | mime -------------------------------------------------------------------------------- /lib/terminfo/m/minitel: -------------------------------------------------------------------------------- 1 | m2-nam -------------------------------------------------------------------------------- /lib/terminfo/m/minitel-2: -------------------------------------------------------------------------------- 1 | m2-nam -------------------------------------------------------------------------------- /lib/terminfo/m/minitel-2-nam: -------------------------------------------------------------------------------- 1 | m2-nam -------------------------------------------------------------------------------- /lib/terminfo/m/minix-1.5: -------------------------------------------------------------------------------- 1 | minix-old -------------------------------------------------------------------------------- /lib/terminfo/m/mm314: -------------------------------------------------------------------------------- 1 | mime314 -------------------------------------------------------------------------------- /lib/terminfo/m/mod: -------------------------------------------------------------------------------- 1 | modgraph48 -------------------------------------------------------------------------------- /lib/terminfo/m/mod24: -------------------------------------------------------------------------------- 1 | modgraph -------------------------------------------------------------------------------- /lib/terminfo/m/mouse-sun: -------------------------------------------------------------------------------- 1 | mterm -------------------------------------------------------------------------------- /lib/terminfo/m/mskermit227: -------------------------------------------------------------------------------- 1 | msk227 -------------------------------------------------------------------------------- /lib/terminfo/m/mskermit22714: -------------------------------------------------------------------------------- 1 | msk22714 -------------------------------------------------------------------------------- /lib/terminfo/m/mskermit227am: -------------------------------------------------------------------------------- 1 | msk227am -------------------------------------------------------------------------------- /lib/terminfo/m/mt-70: -------------------------------------------------------------------------------- 1 | mt70 -------------------------------------------------------------------------------- /lib/terminfo/n/nansisys: -------------------------------------------------------------------------------- 1 | nansi.sys -------------------------------------------------------------------------------- /lib/terminfo/n/nansisysk: -------------------------------------------------------------------------------- 1 | nansi.sysk -------------------------------------------------------------------------------- /lib/terminfo/n/ncr260vt300wpp: -------------------------------------------------------------------------------- 1 | ../N/NCR260VT300WPP -------------------------------------------------------------------------------- /lib/terminfo/n/ncr7900: -------------------------------------------------------------------------------- 1 | ncr7900i -------------------------------------------------------------------------------- /lib/terminfo/n/ncrvt100pp: -------------------------------------------------------------------------------- 1 | ncrvt100an -------------------------------------------------------------------------------- /lib/terminfo/n/ncrvt100wpp: -------------------------------------------------------------------------------- 1 | ncrvt100wan -------------------------------------------------------------------------------- /lib/terminfo/n/ncsa-vt220-8: -------------------------------------------------------------------------------- 1 | ncsa-m -------------------------------------------------------------------------------- /lib/terminfo/n/nd9500: -------------------------------------------------------------------------------- 1 | ndr9500 -------------------------------------------------------------------------------- /lib/terminfo/n/nec: -------------------------------------------------------------------------------- 1 | nec5520 -------------------------------------------------------------------------------- /lib/terminfo/n/news: -------------------------------------------------------------------------------- 1 | nwp512 -------------------------------------------------------------------------------- /lib/terminfo/n/news-a: -------------------------------------------------------------------------------- 1 | nwp512-a -------------------------------------------------------------------------------- /lib/terminfo/n/news-o: -------------------------------------------------------------------------------- 1 | nwp512-o -------------------------------------------------------------------------------- /lib/terminfo/n/news28-a: -------------------------------------------------------------------------------- 1 | news29 -------------------------------------------------------------------------------- /lib/terminfo/n/news31: -------------------------------------------------------------------------------- 1 | nwp513 -------------------------------------------------------------------------------- /lib/terminfo/n/news31-a: -------------------------------------------------------------------------------- 1 | nwp513-a -------------------------------------------------------------------------------- /lib/terminfo/n/news31-o: -------------------------------------------------------------------------------- 1 | nwp513-o -------------------------------------------------------------------------------- /lib/terminfo/n/news33: -------------------------------------------------------------------------------- 1 | nwp513-a -------------------------------------------------------------------------------- /lib/terminfo/n/news40: -------------------------------------------------------------------------------- 1 | nwp512 -------------------------------------------------------------------------------- /lib/terminfo/n/news40-a: -------------------------------------------------------------------------------- 1 | nwp512-a -------------------------------------------------------------------------------- /lib/terminfo/n/news40-o: -------------------------------------------------------------------------------- 1 | nwp512-o -------------------------------------------------------------------------------- /lib/terminfo/n/news42: -------------------------------------------------------------------------------- 1 | nwp512-a -------------------------------------------------------------------------------- /lib/terminfo/n/newscbm: -------------------------------------------------------------------------------- 1 | nwp513 -------------------------------------------------------------------------------- /lib/terminfo/n/newscbm-a: -------------------------------------------------------------------------------- 1 | nwp513-a -------------------------------------------------------------------------------- /lib/terminfo/n/newscbm-o: -------------------------------------------------------------------------------- 1 | nwp513-o -------------------------------------------------------------------------------- /lib/terminfo/n/newscbm33: -------------------------------------------------------------------------------- 1 | nwp513-a -------------------------------------------------------------------------------- /lib/terminfo/n/nsterm-7-c-s: -------------------------------------------------------------------------------- 1 | nsterm-c-s-7 -------------------------------------------------------------------------------- /lib/terminfo/n/nsterm-7-m: -------------------------------------------------------------------------------- 1 | nsterm-m-7 -------------------------------------------------------------------------------- /lib/terminfo/n/nsterm-7-m-s: -------------------------------------------------------------------------------- 1 | nsterm-m-s-7 -------------------------------------------------------------------------------- /lib/terminfo/n/nsterm-7-s: -------------------------------------------------------------------------------- 1 | nsterm-s-7 -------------------------------------------------------------------------------- /lib/terminfo/n/nsterm-acs-c: -------------------------------------------------------------------------------- 1 | nsterm-c-acs -------------------------------------------------------------------------------- /lib/terminfo/n/nsterm-acs-c-s: -------------------------------------------------------------------------------- 1 | nsterm-c-s-acs -------------------------------------------------------------------------------- /lib/terminfo/n/nsterm-acs-m: -------------------------------------------------------------------------------- 1 | nsterm-m-acs -------------------------------------------------------------------------------- /lib/terminfo/n/nsterm-acs-m-s: -------------------------------------------------------------------------------- 1 | nsterm-m-s-acs -------------------------------------------------------------------------------- /lib/terminfo/n/nsterm-acs-s: -------------------------------------------------------------------------------- 1 | nsterm-s-acs -------------------------------------------------------------------------------- /lib/terminfo/n/nsterm-c-7: -------------------------------------------------------------------------------- 1 | nsterm-7-c -------------------------------------------------------------------------------- /lib/terminfo/n/ntconsole: -------------------------------------------------------------------------------- 1 | ../i/interix -------------------------------------------------------------------------------- /lib/terminfo/n/ntconsole-100: -------------------------------------------------------------------------------- 1 | ../o/opennt-100 -------------------------------------------------------------------------------- /lib/terminfo/n/ntconsole-100-nti: -------------------------------------------------------------------------------- 1 | ../o/opennt-100-nti -------------------------------------------------------------------------------- /lib/terminfo/n/ntconsole-25: -------------------------------------------------------------------------------- 1 | ../i/interix -------------------------------------------------------------------------------- /lib/terminfo/n/ntconsole-25-nti: -------------------------------------------------------------------------------- 1 | ../i/interix-nti -------------------------------------------------------------------------------- /lib/terminfo/n/ntconsole-25-w: -------------------------------------------------------------------------------- 1 | ../o/opennt-w -------------------------------------------------------------------------------- /lib/terminfo/n/ntconsole-25-w-vt: -------------------------------------------------------------------------------- 1 | ../o/opennt-w-vt -------------------------------------------------------------------------------- /lib/terminfo/n/ntconsole-35: -------------------------------------------------------------------------------- 1 | ../o/opennt-35 -------------------------------------------------------------------------------- /lib/terminfo/n/ntconsole-35-nti: -------------------------------------------------------------------------------- 1 | ../o/opennt-35-nti -------------------------------------------------------------------------------- /lib/terminfo/n/ntconsole-35-w: -------------------------------------------------------------------------------- 1 | ../o/opennt-35-w -------------------------------------------------------------------------------- /lib/terminfo/n/ntconsole-50: -------------------------------------------------------------------------------- 1 | ../o/opennt-50 -------------------------------------------------------------------------------- /lib/terminfo/n/ntconsole-50-nti: -------------------------------------------------------------------------------- 1 | ../o/opennt-50-nti -------------------------------------------------------------------------------- /lib/terminfo/n/ntconsole-50-w: -------------------------------------------------------------------------------- 1 | ../o/opennt-50-w -------------------------------------------------------------------------------- /lib/terminfo/n/ntconsole-60: -------------------------------------------------------------------------------- 1 | ../o/opennt-60 -------------------------------------------------------------------------------- /lib/terminfo/n/ntconsole-60-nti: -------------------------------------------------------------------------------- 1 | ../o/opennt-60-nti -------------------------------------------------------------------------------- /lib/terminfo/n/ntconsole-60-w: -------------------------------------------------------------------------------- 1 | ../o/opennt-60-w -------------------------------------------------------------------------------- /lib/terminfo/n/ntconsole-w: -------------------------------------------------------------------------------- 1 | ../o/opennt-w -------------------------------------------------------------------------------- /lib/terminfo/n/ntconsole-w-vt: -------------------------------------------------------------------------------- 1 | ../o/opennt-w-vt -------------------------------------------------------------------------------- /lib/terminfo/n/nwe501: -------------------------------------------------------------------------------- 1 | nwp513 -------------------------------------------------------------------------------- /lib/terminfo/n/nwe501-a: -------------------------------------------------------------------------------- 1 | nwp513-a -------------------------------------------------------------------------------- /lib/terminfo/n/nwe501-o: -------------------------------------------------------------------------------- 1 | nwp513-o -------------------------------------------------------------------------------- /lib/terminfo/n/nwp-511: -------------------------------------------------------------------------------- 1 | nwp511 -------------------------------------------------------------------------------- /lib/terminfo/n/nwp-517: -------------------------------------------------------------------------------- 1 | nwp517 -------------------------------------------------------------------------------- /lib/terminfo/n/nwp-517-w: -------------------------------------------------------------------------------- 1 | nwp517-w -------------------------------------------------------------------------------- /lib/terminfo/n/nwp251-a: -------------------------------------------------------------------------------- 1 | nwp513-a -------------------------------------------------------------------------------- /lib/terminfo/n/nwp251-o: -------------------------------------------------------------------------------- 1 | nwp513-o -------------------------------------------------------------------------------- /lib/terminfo/n/nwp514: -------------------------------------------------------------------------------- 1 | nwp512 -------------------------------------------------------------------------------- /lib/terminfo/n/nwp514-a: -------------------------------------------------------------------------------- 1 | nwp512-a -------------------------------------------------------------------------------- /lib/terminfo/n/nwp514-o: -------------------------------------------------------------------------------- 1 | nwp512-o -------------------------------------------------------------------------------- /lib/terminfo/n/nwp518: -------------------------------------------------------------------------------- 1 | nwp513 -------------------------------------------------------------------------------- /lib/terminfo/n/nwp518-a: -------------------------------------------------------------------------------- 1 | nwp513-a -------------------------------------------------------------------------------- /lib/terminfo/n/nwp518-o: -------------------------------------------------------------------------------- 1 | nwp513-o -------------------------------------------------------------------------------- /lib/terminfo/n/nxterm: -------------------------------------------------------------------------------- 1 | ../x/xterm-color -------------------------------------------------------------------------------- /lib/terminfo/o/o31: -------------------------------------------------------------------------------- 1 | ../a/adm31-old -------------------------------------------------------------------------------- /lib/terminfo/o/o4112-nd: -------------------------------------------------------------------------------- 1 | otek4112 -------------------------------------------------------------------------------- /lib/terminfo/o/o85h: -------------------------------------------------------------------------------- 1 | ../a/abm85h-old -------------------------------------------------------------------------------- /lib/terminfo/o/oabm85h: -------------------------------------------------------------------------------- 1 | ../a/abm85h-old -------------------------------------------------------------------------------- /lib/terminfo/o/oconcept: -------------------------------------------------------------------------------- 1 | oc100 -------------------------------------------------------------------------------- /lib/terminfo/o/ojerq: -------------------------------------------------------------------------------- 1 | oblit -------------------------------------------------------------------------------- /lib/terminfo/o/old-st: -------------------------------------------------------------------------------- 1 | ../s/simpleterm -------------------------------------------------------------------------------- /lib/terminfo/o/oldibmpc3: -------------------------------------------------------------------------------- 1 | oldpc3 -------------------------------------------------------------------------------- /lib/terminfo/o/opennt: -------------------------------------------------------------------------------- 1 | ../i/interix -------------------------------------------------------------------------------- /lib/terminfo/o/opennt-25: -------------------------------------------------------------------------------- 1 | ../i/interix -------------------------------------------------------------------------------- /lib/terminfo/o/opennt-25-nti: -------------------------------------------------------------------------------- 1 | ../i/interix-nti -------------------------------------------------------------------------------- /lib/terminfo/o/opennt-25-w: -------------------------------------------------------------------------------- 1 | opennt-w -------------------------------------------------------------------------------- /lib/terminfo/o/opennt-25-w-vt: -------------------------------------------------------------------------------- 1 | opennt-w-vt -------------------------------------------------------------------------------- /lib/terminfo/o/opennt-nti: -------------------------------------------------------------------------------- 1 | ../i/interix-nti -------------------------------------------------------------------------------- /lib/terminfo/o/origibmpc3: -------------------------------------------------------------------------------- 1 | origpc3 -------------------------------------------------------------------------------- /lib/terminfo/o/os9LII: -------------------------------------------------------------------------------- 1 | ../c/coco3 -------------------------------------------------------------------------------- /lib/terminfo/o/osborne1: -------------------------------------------------------------------------------- 1 | osborne -------------------------------------------------------------------------------- /lib/terminfo/o/osborne1-w: -------------------------------------------------------------------------------- 1 | osborne-w -------------------------------------------------------------------------------- /lib/terminfo/o/otek4113: -------------------------------------------------------------------------------- 1 | otek4112 -------------------------------------------------------------------------------- /lib/terminfo/o/otek4114: -------------------------------------------------------------------------------- 1 | otek4112 -------------------------------------------------------------------------------- /lib/terminfo/o/owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/o/owl -------------------------------------------------------------------------------- /lib/terminfo/p/p12: -------------------------------------------------------------------------------- 1 | prism12 -------------------------------------------------------------------------------- /lib/terminfo/p/p12-m: -------------------------------------------------------------------------------- 1 | prism12-m -------------------------------------------------------------------------------- /lib/terminfo/p/p12-m-w: -------------------------------------------------------------------------------- 1 | prism12-m-w -------------------------------------------------------------------------------- /lib/terminfo/p/p12-w: -------------------------------------------------------------------------------- 1 | prism12-w -------------------------------------------------------------------------------- /lib/terminfo/p/p14: -------------------------------------------------------------------------------- 1 | prism14 -------------------------------------------------------------------------------- /lib/terminfo/p/p14-m: -------------------------------------------------------------------------------- 1 | prism14-m -------------------------------------------------------------------------------- /lib/terminfo/p/p14-m-w: -------------------------------------------------------------------------------- 1 | prism14-m-w -------------------------------------------------------------------------------- /lib/terminfo/p/p14-w: -------------------------------------------------------------------------------- 1 | prism14-w -------------------------------------------------------------------------------- /lib/terminfo/p/p19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/p/p19 -------------------------------------------------------------------------------- /lib/terminfo/p/p4: -------------------------------------------------------------------------------- 1 | prism4 -------------------------------------------------------------------------------- /lib/terminfo/p/p5: -------------------------------------------------------------------------------- 1 | prism5 -------------------------------------------------------------------------------- /lib/terminfo/p/p7: -------------------------------------------------------------------------------- 1 | prism7 -------------------------------------------------------------------------------- /lib/terminfo/p/p8: -------------------------------------------------------------------------------- 1 | prism8 -------------------------------------------------------------------------------- /lib/terminfo/p/p8-w: -------------------------------------------------------------------------------- 1 | prism8-w -------------------------------------------------------------------------------- /lib/terminfo/p/p9: -------------------------------------------------------------------------------- 1 | prism9 -------------------------------------------------------------------------------- /lib/terminfo/p/p9-8: -------------------------------------------------------------------------------- 1 | prism9-8 -------------------------------------------------------------------------------- /lib/terminfo/p/p9-8-w: -------------------------------------------------------------------------------- 1 | prism9-8-w -------------------------------------------------------------------------------- /lib/terminfo/p/p9-w: -------------------------------------------------------------------------------- 1 | prism9-w -------------------------------------------------------------------------------- /lib/terminfo/p/pc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/p/pc3 -------------------------------------------------------------------------------- /lib/terminfo/p/pc3-bold: -------------------------------------------------------------------------------- 1 | ../i/ibmpc3 -------------------------------------------------------------------------------- /lib/terminfo/p/pc3r: -------------------------------------------------------------------------------- 1 | ../c/cons25r -------------------------------------------------------------------------------- /lib/terminfo/p/pc3r-m: -------------------------------------------------------------------------------- 1 | ../c/cons25r-m -------------------------------------------------------------------------------- /lib/terminfo/p/pc7300: -------------------------------------------------------------------------------- 1 | ../a/att7300 -------------------------------------------------------------------------------- /lib/terminfo/p/pcansi-mono: -------------------------------------------------------------------------------- 1 | pcansi-m -------------------------------------------------------------------------------- /lib/terminfo/p/pcansi25: -------------------------------------------------------------------------------- 1 | pcansi-25 -------------------------------------------------------------------------------- /lib/terminfo/p/pcansi25m: -------------------------------------------------------------------------------- 1 | pcansi-25-m -------------------------------------------------------------------------------- /lib/terminfo/p/pcansi33: -------------------------------------------------------------------------------- 1 | pcansi-33 -------------------------------------------------------------------------------- /lib/terminfo/p/pcansi33m: -------------------------------------------------------------------------------- 1 | pcansi-33-m -------------------------------------------------------------------------------- /lib/terminfo/p/pcansi43: -------------------------------------------------------------------------------- 1 | pcansi-43 -------------------------------------------------------------------------------- /lib/terminfo/p/pcconsole: -------------------------------------------------------------------------------- 1 | pccons -------------------------------------------------------------------------------- /lib/terminfo/p/pckermit12: -------------------------------------------------------------------------------- 1 | pckermit -------------------------------------------------------------------------------- /lib/terminfo/p/pcz19: -------------------------------------------------------------------------------- 1 | pc-coherent -------------------------------------------------------------------------------- /lib/terminfo/p/pe1100: -------------------------------------------------------------------------------- 1 | ../f/fox -------------------------------------------------------------------------------- /lib/terminfo/p/pe1200: -------------------------------------------------------------------------------- 1 | ../o/owl -------------------------------------------------------------------------------- /lib/terminfo/p/pe550: -------------------------------------------------------------------------------- 1 | ../b/bantam -------------------------------------------------------------------------------- /lib/terminfo/p/pe6100: -------------------------------------------------------------------------------- 1 | ../b/bantam -------------------------------------------------------------------------------- /lib/terminfo/p/pe6300: -------------------------------------------------------------------------------- 1 | pe1251 -------------------------------------------------------------------------------- /lib/terminfo/p/pe6312: -------------------------------------------------------------------------------- 1 | pe1251 -------------------------------------------------------------------------------- /lib/terminfo/p/pmconsole: -------------------------------------------------------------------------------- 1 | pmcons -------------------------------------------------------------------------------- /lib/terminfo/p/printer: -------------------------------------------------------------------------------- 1 | ../l/lpr -------------------------------------------------------------------------------- /lib/terminfo/p/prism8gl: -------------------------------------------------------------------------------- 1 | p8gl -------------------------------------------------------------------------------- /lib/terminfo/p/psterm-basic: -------------------------------------------------------------------------------- 1 | psterm -------------------------------------------------------------------------------- /lib/terminfo/p/psx_ansi: -------------------------------------------------------------------------------- 1 | ../a/ansi-nt -------------------------------------------------------------------------------- /lib/terminfo/p/pt200: -------------------------------------------------------------------------------- 1 | pt100 -------------------------------------------------------------------------------- /lib/terminfo/p/pt200w: -------------------------------------------------------------------------------- 1 | pt100w -------------------------------------------------------------------------------- /lib/terminfo/p/pt505: -------------------------------------------------------------------------------- 1 | ../a/att505 -------------------------------------------------------------------------------- /lib/terminfo/p/pt505-22: -------------------------------------------------------------------------------- 1 | ../t/tt505-22 -------------------------------------------------------------------------------- /lib/terminfo/p/pt505-24: -------------------------------------------------------------------------------- 1 | ../a/att505-24 -------------------------------------------------------------------------------- /lib/terminfo/p/pty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/p/pty -------------------------------------------------------------------------------- /lib/terminfo/q/qdcons: -------------------------------------------------------------------------------- 1 | qdss -------------------------------------------------------------------------------- /lib/terminfo/q/qnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/q/qnx -------------------------------------------------------------------------------- /lib/terminfo/q/qnx4: -------------------------------------------------------------------------------- 1 | qnx -------------------------------------------------------------------------------- /lib/terminfo/q/qnxt4: -------------------------------------------------------------------------------- 1 | qnxt -------------------------------------------------------------------------------- /lib/terminfo/q/qume: -------------------------------------------------------------------------------- 1 | qume5 -------------------------------------------------------------------------------- /lib/terminfo/q/qvt101p: -------------------------------------------------------------------------------- 1 | qvt101+ -------------------------------------------------------------------------------- /lib/terminfo/q/qvt108: -------------------------------------------------------------------------------- 1 | qvt101 -------------------------------------------------------------------------------- /lib/terminfo/q/qvt119: -------------------------------------------------------------------------------- 1 | qvt119+ -------------------------------------------------------------------------------- /lib/terminfo/q/qvt119-25-w: -------------------------------------------------------------------------------- 1 | qvt119+-25-w -------------------------------------------------------------------------------- /lib/terminfo/q/qvt119-w: -------------------------------------------------------------------------------- 1 | qvt119+-w -------------------------------------------------------------------------------- /lib/terminfo/q/qvt119p: -------------------------------------------------------------------------------- 1 | qvt119+ -------------------------------------------------------------------------------- /lib/terminfo/q/qvt119p-25: -------------------------------------------------------------------------------- 1 | qvt119+-25 -------------------------------------------------------------------------------- /lib/terminfo/q/qvt119p-25-w: -------------------------------------------------------------------------------- 1 | qvt119+-25-w -------------------------------------------------------------------------------- /lib/terminfo/q/qvt119p-w: -------------------------------------------------------------------------------- 1 | qvt119+-w -------------------------------------------------------------------------------- /lib/terminfo/q/qvt203+: -------------------------------------------------------------------------------- 1 | qvt203 -------------------------------------------------------------------------------- /lib/terminfo/q/qvt203-w-am: -------------------------------------------------------------------------------- 1 | qvt203-w -------------------------------------------------------------------------------- /lib/terminfo/r/rca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/r/rca -------------------------------------------------------------------------------- /lib/terminfo/r/rebus3180: -------------------------------------------------------------------------------- 1 | ../d/ddr -------------------------------------------------------------------------------- /lib/terminfo/r/regent200: -------------------------------------------------------------------------------- 1 | regent60 -------------------------------------------------------------------------------- /lib/terminfo/s/s4: -------------------------------------------------------------------------------- 1 | ../a/att7300 -------------------------------------------------------------------------------- /lib/terminfo/s/sb1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/s/sb1 -------------------------------------------------------------------------------- /lib/terminfo/s/sb2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/s/sb2 -------------------------------------------------------------------------------- /lib/terminfo/s/sb3: -------------------------------------------------------------------------------- 1 | sb2 -------------------------------------------------------------------------------- /lib/terminfo/s/sbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/s/sbi -------------------------------------------------------------------------------- /lib/terminfo/s/sbobcat: -------------------------------------------------------------------------------- 1 | ../b/bobcat -------------------------------------------------------------------------------- /lib/terminfo/s/sc410: -------------------------------------------------------------------------------- 1 | scanset -------------------------------------------------------------------------------- /lib/terminfo/s/sc415: -------------------------------------------------------------------------------- 1 | scanset -------------------------------------------------------------------------------- /lib/terminfo/s/screen.xterm-new: -------------------------------------------------------------------------------- 1 | screen.xterm-xfree86 -------------------------------------------------------------------------------- /lib/terminfo/s/soroc: -------------------------------------------------------------------------------- 1 | soroc120 -------------------------------------------------------------------------------- /lib/terminfo/s/spinwriter: -------------------------------------------------------------------------------- 1 | ../n/nec5520 -------------------------------------------------------------------------------- /lib/terminfo/s/st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/s/st -------------------------------------------------------------------------------- /lib/terminfo/s/st52-m: -------------------------------------------------------------------------------- 1 | st52 -------------------------------------------------------------------------------- /lib/terminfo/s/stterm: -------------------------------------------------------------------------------- 1 | st -------------------------------------------------------------------------------- /lib/terminfo/s/stterm-16color: -------------------------------------------------------------------------------- 1 | st-16color -------------------------------------------------------------------------------- /lib/terminfo/s/stterm-256color: -------------------------------------------------------------------------------- 1 | st-256color -------------------------------------------------------------------------------- /lib/terminfo/s/sun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/s/sun -------------------------------------------------------------------------------- /lib/terminfo/s/sun-cmd: -------------------------------------------------------------------------------- 1 | sun-c -------------------------------------------------------------------------------- /lib/terminfo/s/sun-nic: -------------------------------------------------------------------------------- 1 | sun-e -------------------------------------------------------------------------------- /lib/terminfo/s/sun-s-e: -------------------------------------------------------------------------------- 1 | sun-e-s -------------------------------------------------------------------------------- /lib/terminfo/s/sun-ss5: -------------------------------------------------------------------------------- 1 | sun-cgsix -------------------------------------------------------------------------------- /lib/terminfo/s/sun1: -------------------------------------------------------------------------------- 1 | sun -------------------------------------------------------------------------------- /lib/terminfo/s/sun2: -------------------------------------------------------------------------------- 1 | sun -------------------------------------------------------------------------------- /lib/terminfo/s/sune: -------------------------------------------------------------------------------- 1 | sun-e -------------------------------------------------------------------------------- /lib/terminfo/s/superbee: -------------------------------------------------------------------------------- 1 | sbi -------------------------------------------------------------------------------- /lib/terminfo/s/sv80: -------------------------------------------------------------------------------- 1 | ../a/att2300 -------------------------------------------------------------------------------- /lib/terminfo/s/synertek380: -------------------------------------------------------------------------------- 1 | synertek -------------------------------------------------------------------------------- /lib/terminfo/s/system1: -------------------------------------------------------------------------------- 1 | ../i/ibm-system1 -------------------------------------------------------------------------------- /lib/terminfo/t/t10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/t/t10 -------------------------------------------------------------------------------- /lib/terminfo/t/t16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/t/t16 -------------------------------------------------------------------------------- /lib/terminfo/t/t653x: -------------------------------------------------------------------------------- 1 | tandem653 -------------------------------------------------------------------------------- /lib/terminfo/t/tab: -------------------------------------------------------------------------------- 1 | tab132 -------------------------------------------------------------------------------- /lib/terminfo/t/tab132-15: -------------------------------------------------------------------------------- 1 | tab132 -------------------------------------------------------------------------------- /lib/terminfo/t/tek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/t/tek -------------------------------------------------------------------------------- /lib/terminfo/t/tek4012: -------------------------------------------------------------------------------- 1 | tek -------------------------------------------------------------------------------- /lib/terminfo/t/tek4025: -------------------------------------------------------------------------------- 1 | tek4024 -------------------------------------------------------------------------------- /lib/terminfo/t/tek4027: -------------------------------------------------------------------------------- 1 | tek4024 -------------------------------------------------------------------------------- /lib/terminfo/t/tek4027-ex: -------------------------------------------------------------------------------- 1 | tek4025-ex -------------------------------------------------------------------------------- /lib/terminfo/t/tek4107brl: -------------------------------------------------------------------------------- 1 | tek4106brl -------------------------------------------------------------------------------- /lib/terminfo/t/tek4109: -------------------------------------------------------------------------------- 1 | tek4107 -------------------------------------------------------------------------------- /lib/terminfo/t/tek4109brl: -------------------------------------------------------------------------------- 1 | tek4106brl -------------------------------------------------------------------------------- /lib/terminfo/t/tek4114: -------------------------------------------------------------------------------- 1 | tek4112 -------------------------------------------------------------------------------- /lib/terminfo/t/teleray: -------------------------------------------------------------------------------- 1 | t1061 -------------------------------------------------------------------------------- /lib/terminfo/t/terminet: -------------------------------------------------------------------------------- 1 | terminet1200 -------------------------------------------------------------------------------- /lib/terminfo/t/terminet300: -------------------------------------------------------------------------------- 1 | terminet1200 -------------------------------------------------------------------------------- /lib/terminfo/t/tgtelnet: -------------------------------------------------------------------------------- 1 | ../p/pilot -------------------------------------------------------------------------------- /lib/terminfo/t/ti733: -------------------------------------------------------------------------------- 1 | ti700 -------------------------------------------------------------------------------- /lib/terminfo/t/ti735: -------------------------------------------------------------------------------- 1 | ti700 -------------------------------------------------------------------------------- /lib/terminfo/t/ti745: -------------------------------------------------------------------------------- 1 | ti700 -------------------------------------------------------------------------------- /lib/terminfo/t/ti800: -------------------------------------------------------------------------------- 1 | ti700 -------------------------------------------------------------------------------- /lib/terminfo/t/ti916-220-7: -------------------------------------------------------------------------------- 1 | ti916 -------------------------------------------------------------------------------- /lib/terminfo/t/ti916-220-8: -------------------------------------------------------------------------------- 1 | ti916-8 -------------------------------------------------------------------------------- /lib/terminfo/t/tkterm: -------------------------------------------------------------------------------- 1 | tt -------------------------------------------------------------------------------- /lib/terminfo/t/tn1200: -------------------------------------------------------------------------------- 1 | terminet1200 -------------------------------------------------------------------------------- /lib/terminfo/t/tn300: -------------------------------------------------------------------------------- 1 | terminet1200 -------------------------------------------------------------------------------- /lib/terminfo/t/trs80II: -------------------------------------------------------------------------------- 1 | trs2 -------------------------------------------------------------------------------- /lib/terminfo/t/trsII: -------------------------------------------------------------------------------- 1 | trs2 -------------------------------------------------------------------------------- /lib/terminfo/t/ts-1: -------------------------------------------------------------------------------- 1 | ../f/falco -------------------------------------------------------------------------------- /lib/terminfo/t/ts-1p: -------------------------------------------------------------------------------- 1 | ../f/falco-p -------------------------------------------------------------------------------- /lib/terminfo/t/ts1: -------------------------------------------------------------------------------- 1 | ../f/falco -------------------------------------------------------------------------------- /lib/terminfo/t/ts100-sp: -------------------------------------------------------------------------------- 1 | ts100 -------------------------------------------------------------------------------- /lib/terminfo/t/ts1p: -------------------------------------------------------------------------------- 1 | ../f/falco-p -------------------------------------------------------------------------------- /lib/terminfo/t/tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/t/tt -------------------------------------------------------------------------------- /lib/terminfo/t/tty35: -------------------------------------------------------------------------------- 1 | tty33 -------------------------------------------------------------------------------- /lib/terminfo/t/tty4420: -------------------------------------------------------------------------------- 1 | ../a/att4420 -------------------------------------------------------------------------------- /lib/terminfo/t/tty4424: -------------------------------------------------------------------------------- 1 | ../a/att4424 -------------------------------------------------------------------------------- /lib/terminfo/t/tty4424-1: -------------------------------------------------------------------------------- 1 | ../a/att4424-1 -------------------------------------------------------------------------------- /lib/terminfo/t/tty4424m: -------------------------------------------------------------------------------- 1 | ../a/att4424m -------------------------------------------------------------------------------- /lib/terminfo/t/tty4426: -------------------------------------------------------------------------------- 1 | ../a/att4426 -------------------------------------------------------------------------------- /lib/terminfo/t/tty5410: -------------------------------------------------------------------------------- 1 | ../a/att4410 -------------------------------------------------------------------------------- /lib/terminfo/t/tty5410-w: -------------------------------------------------------------------------------- 1 | ../a/att5410-w -------------------------------------------------------------------------------- /lib/terminfo/t/tty5410v1: -------------------------------------------------------------------------------- 1 | ../a/att5410v1 -------------------------------------------------------------------------------- /lib/terminfo/t/tty5410v1-w: -------------------------------------------------------------------------------- 1 | ../a/att4410v1-w -------------------------------------------------------------------------------- /lib/terminfo/t/tty5420: -------------------------------------------------------------------------------- 1 | ../a/att4415 -------------------------------------------------------------------------------- /lib/terminfo/t/tty5420+nl: -------------------------------------------------------------------------------- 1 | ../a/att4415+nl -------------------------------------------------------------------------------- /lib/terminfo/t/tty5420-nl: -------------------------------------------------------------------------------- 1 | ../a/att4415-nl -------------------------------------------------------------------------------- /lib/terminfo/t/tty5420-rv: -------------------------------------------------------------------------------- 1 | ../a/att4415-rv -------------------------------------------------------------------------------- /lib/terminfo/t/tty5420-rv-nl: -------------------------------------------------------------------------------- 1 | ../a/att4415-rv-nl -------------------------------------------------------------------------------- /lib/terminfo/t/tty5420-w: -------------------------------------------------------------------------------- 1 | ../a/att4415-w -------------------------------------------------------------------------------- /lib/terminfo/t/tty5420-w-nl: -------------------------------------------------------------------------------- 1 | ../a/att4415-w-nl -------------------------------------------------------------------------------- /lib/terminfo/t/tty5420-w-rv: -------------------------------------------------------------------------------- 1 | ../a/att4415-w-rv -------------------------------------------------------------------------------- /lib/terminfo/t/tty5420-w-rv-n: -------------------------------------------------------------------------------- 1 | ../a/att4415-w-rv-n -------------------------------------------------------------------------------- /lib/terminfo/t/tty5425: -------------------------------------------------------------------------------- 1 | ../a/att5425 -------------------------------------------------------------------------------- /lib/terminfo/t/tty5425-nl: -------------------------------------------------------------------------------- 1 | ../a/att5425-nl -------------------------------------------------------------------------------- /lib/terminfo/t/tty5425-w: -------------------------------------------------------------------------------- 1 | ../a/att5425-w -------------------------------------------------------------------------------- /lib/terminfo/t/tty5620: -------------------------------------------------------------------------------- 1 | ../a/att5620 -------------------------------------------------------------------------------- /lib/terminfo/t/tty5620-1: -------------------------------------------------------------------------------- 1 | ../a/att5620-1 -------------------------------------------------------------------------------- /lib/terminfo/t/tty5620-24: -------------------------------------------------------------------------------- 1 | ../a/att5620-24 -------------------------------------------------------------------------------- /lib/terminfo/t/tty5620-34: -------------------------------------------------------------------------------- 1 | ../a/att5620-34 -------------------------------------------------------------------------------- /lib/terminfo/t/tty5620-s: -------------------------------------------------------------------------------- 1 | ../a/att5620-s -------------------------------------------------------------------------------- /lib/terminfo/t/ttydmd: -------------------------------------------------------------------------------- 1 | ../a/att5620 -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912b-mc-2p: -------------------------------------------------------------------------------- 1 | tvi912b-2p-mc -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912b-mc-vb: -------------------------------------------------------------------------------- 1 | tvi912b-vb-mc -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912b-p-2p: -------------------------------------------------------------------------------- 1 | tvi912b-2p-p -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912b-p-vb: -------------------------------------------------------------------------------- 1 | tvi912b-vb-p -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912b-unk-2p: -------------------------------------------------------------------------------- 1 | tvi912b-2p-unk -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912b-unk-vb: -------------------------------------------------------------------------------- 1 | tvi912b-vb-unk -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912c: -------------------------------------------------------------------------------- 1 | tvi912b -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912c-2p: -------------------------------------------------------------------------------- 1 | tvi912b-2p -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912c-2p-mc: -------------------------------------------------------------------------------- 1 | tvi912b-2p-mc -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912c-2p-p: -------------------------------------------------------------------------------- 1 | tvi912b-2p-p -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912c-2p-unk: -------------------------------------------------------------------------------- 1 | tvi912b-2p-unk -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912c-mc: -------------------------------------------------------------------------------- 1 | tvi912b-mc -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912c-mc-2p: -------------------------------------------------------------------------------- 1 | tvi912b-2p-mc -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912c-mc-vb: -------------------------------------------------------------------------------- 1 | tvi912b-vb-mc -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912c-p: -------------------------------------------------------------------------------- 1 | tvi912b-p -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912c-p-2p: -------------------------------------------------------------------------------- 1 | tvi912b-2p-p -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912c-p-vb: -------------------------------------------------------------------------------- 1 | tvi912b-vb-p -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912c-unk: -------------------------------------------------------------------------------- 1 | tvi912b-unk -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912c-unk-2p: -------------------------------------------------------------------------------- 1 | tvi912b-2p-unk -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912c-unk-vb: -------------------------------------------------------------------------------- 1 | tvi912b-vb-unk -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912c-vb: -------------------------------------------------------------------------------- 1 | tvi912b-vb -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912c-vb-mc: -------------------------------------------------------------------------------- 1 | tvi912b-vb-mc -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912c-vb-p: -------------------------------------------------------------------------------- 1 | tvi912b-vb-p -------------------------------------------------------------------------------- /lib/terminfo/t/tvi912c-vb-unk: -------------------------------------------------------------------------------- 1 | tvi912b-vb-unk -------------------------------------------------------------------------------- /lib/terminfo/t/tvi914: -------------------------------------------------------------------------------- 1 | tvi912 -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920: -------------------------------------------------------------------------------- 1 | tvi912 -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920b-mc-2p: -------------------------------------------------------------------------------- 1 | tvi920b-2p-mc -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920b-mc-vb: -------------------------------------------------------------------------------- 1 | tvi920b-vb-mc -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920b-p-2p: -------------------------------------------------------------------------------- 1 | tvi920b-2p-p -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920b-p-vb: -------------------------------------------------------------------------------- 1 | tvi920b-vb-p -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920b-unk-2p: -------------------------------------------------------------------------------- 1 | tvi920b-2p-unk -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920b-unk-vb: -------------------------------------------------------------------------------- 1 | tvi920b-vb-unk -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920c: -------------------------------------------------------------------------------- 1 | tvi920b -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920c-2p: -------------------------------------------------------------------------------- 1 | tvi920b-2p -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920c-2p-mc: -------------------------------------------------------------------------------- 1 | tvi920b-2p-mc -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920c-2p-p: -------------------------------------------------------------------------------- 1 | tvi920b-2p-p -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920c-2p-unk: -------------------------------------------------------------------------------- 1 | tvi920b-2p-unk -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920c-mc: -------------------------------------------------------------------------------- 1 | tvi920b-mc -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920c-mc-2p: -------------------------------------------------------------------------------- 1 | tvi920b-2p-mc -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920c-mc-vb: -------------------------------------------------------------------------------- 1 | tvi920b-vb-mc -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920c-p: -------------------------------------------------------------------------------- 1 | tvi920b-p -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920c-p-2p: -------------------------------------------------------------------------------- 1 | tvi920b-2p-p -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920c-p-vb: -------------------------------------------------------------------------------- 1 | tvi920b-vb-p -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920c-unk: -------------------------------------------------------------------------------- 1 | tvi920b-unk -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920c-unk-2p: -------------------------------------------------------------------------------- 1 | tvi920b-2p-unk -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920c-unk-vb: -------------------------------------------------------------------------------- 1 | tvi920b-vb-unk -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920c-vb: -------------------------------------------------------------------------------- 1 | tvi920b-vb -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920c-vb-mc: -------------------------------------------------------------------------------- 1 | tvi920b-vb-mc -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920c-vb-p: -------------------------------------------------------------------------------- 1 | tvi920b-vb-p -------------------------------------------------------------------------------- /lib/terminfo/t/tvi920c-vb-unk: -------------------------------------------------------------------------------- 1 | tvi920b-vb-unk -------------------------------------------------------------------------------- /lib/terminfo/t/tw52-color: -------------------------------------------------------------------------------- 1 | tw52 -------------------------------------------------------------------------------- /lib/terminfo/u/ultima2: -------------------------------------------------------------------------------- 1 | ../i/ims-ansi -------------------------------------------------------------------------------- /lib/terminfo/u/ultimaII: -------------------------------------------------------------------------------- 1 | ../i/ims-ansi -------------------------------------------------------------------------------- /lib/terminfo/u/uniterm49: -------------------------------------------------------------------------------- 1 | uniterm -------------------------------------------------------------------------------- /lib/terminfo/u/unixpc: -------------------------------------------------------------------------------- 1 | ../a/att7300 -------------------------------------------------------------------------------- /lib/terminfo/v/v200-nam: -------------------------------------------------------------------------------- 1 | vt220-nam -------------------------------------------------------------------------------- /lib/terminfo/v/v320n: -------------------------------------------------------------------------------- 1 | vt320nam -------------------------------------------------------------------------------- /lib/terminfo/v/vapple: -------------------------------------------------------------------------------- 1 | ../a/apple-videx3 -------------------------------------------------------------------------------- /lib/terminfo/v/vc103: -------------------------------------------------------------------------------- 1 | vc303 -------------------------------------------------------------------------------- /lib/terminfo/v/vc203: -------------------------------------------------------------------------------- 1 | vc303 -------------------------------------------------------------------------------- /lib/terminfo/v/vc403a: -------------------------------------------------------------------------------- 1 | vc303a -------------------------------------------------------------------------------- /lib/terminfo/v/vc414h: -------------------------------------------------------------------------------- 1 | vc414 -------------------------------------------------------------------------------- /lib/terminfo/v/venix: -------------------------------------------------------------------------------- 1 | ../p/pc-venix -------------------------------------------------------------------------------- /lib/terminfo/v/viewpoint3a+: -------------------------------------------------------------------------------- 1 | vp3a+ -------------------------------------------------------------------------------- /lib/terminfo/v/viewpoint60: -------------------------------------------------------------------------------- 1 | vp60 -------------------------------------------------------------------------------- /lib/terminfo/v/viewpoint90: -------------------------------------------------------------------------------- 1 | vp90 -------------------------------------------------------------------------------- /lib/terminfo/v/vip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/v/vip -------------------------------------------------------------------------------- /lib/terminfo/v/vip7800-H: -------------------------------------------------------------------------------- 1 | vip-H -------------------------------------------------------------------------------- /lib/terminfo/v/vip7800-Hw: -------------------------------------------------------------------------------- 1 | vip-Hw -------------------------------------------------------------------------------- /lib/terminfo/v/vip7800-w: -------------------------------------------------------------------------------- 1 | vip-w -------------------------------------------------------------------------------- /lib/terminfo/v/visual603: -------------------------------------------------------------------------------- 1 | vi603 -------------------------------------------------------------------------------- /lib/terminfo/v/vitty: -------------------------------------------------------------------------------- 1 | ../a/att5620-s -------------------------------------------------------------------------------- /lib/terminfo/v/vk100: -------------------------------------------------------------------------------- 1 | ../g/gigi -------------------------------------------------------------------------------- /lib/terminfo/v/vs100: -------------------------------------------------------------------------------- 1 | ../x/xterm-24 -------------------------------------------------------------------------------- /lib/terminfo/v/vs100-x10: -------------------------------------------------------------------------------- 1 | ../x/x10term -------------------------------------------------------------------------------- /lib/terminfo/v/vsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/v/vsc -------------------------------------------------------------------------------- /lib/terminfo/v/vt-61: -------------------------------------------------------------------------------- 1 | vt61 -------------------------------------------------------------------------------- /lib/terminfo/v/vt-utf8: -------------------------------------------------------------------------------- 1 | ../m/ms-vt-utf8 -------------------------------------------------------------------------------- /lib/terminfo/v/vt100+: -------------------------------------------------------------------------------- 1 | ../m/ms-vt100+ -------------------------------------------------------------------------------- /lib/terminfo/v/vt100-am: -------------------------------------------------------------------------------- 1 | vt100 -------------------------------------------------------------------------------- /lib/terminfo/v/vt100-bm: -------------------------------------------------------------------------------- 1 | ../n/nwp512 -------------------------------------------------------------------------------- /lib/terminfo/v/vt100-bm-o: -------------------------------------------------------------------------------- 1 | ../n/nwp512-o -------------------------------------------------------------------------------- /lib/terminfo/v/vt100-bot-s: -------------------------------------------------------------------------------- 1 | vt100-s-bot -------------------------------------------------------------------------------- /lib/terminfo/v/vt100-nam: -------------------------------------------------------------------------------- 1 | vt100nam -------------------------------------------------------------------------------- /lib/terminfo/v/vt100-nam-w: -------------------------------------------------------------------------------- 1 | vt100-w-nam -------------------------------------------------------------------------------- /lib/terminfo/v/vt100-s-top: -------------------------------------------------------------------------------- 1 | vt100-s -------------------------------------------------------------------------------- /lib/terminfo/v/vt100-top-s: -------------------------------------------------------------------------------- 1 | vt100-s -------------------------------------------------------------------------------- /lib/terminfo/v/vt100-w-am: -------------------------------------------------------------------------------- 1 | vt100-w -------------------------------------------------------------------------------- /lib/terminfo/v/vt100-w-nav: -------------------------------------------------------------------------------- 1 | vt100-nav-w -------------------------------------------------------------------------------- /lib/terminfo/v/vt200: -------------------------------------------------------------------------------- 1 | vt220 -------------------------------------------------------------------------------- /lib/terminfo/v/vt200-8: -------------------------------------------------------------------------------- 1 | vt220-8bit -------------------------------------------------------------------------------- /lib/terminfo/v/vt200-8bit: -------------------------------------------------------------------------------- 1 | vt220-8bit -------------------------------------------------------------------------------- /lib/terminfo/v/vt200-old: -------------------------------------------------------------------------------- 1 | vt220-old -------------------------------------------------------------------------------- /lib/terminfo/v/vt200-w: -------------------------------------------------------------------------------- 1 | vt220-w -------------------------------------------------------------------------------- /lib/terminfo/v/vt220-8: -------------------------------------------------------------------------------- 1 | vt220-8bit -------------------------------------------------------------------------------- /lib/terminfo/v/vt220-js: -------------------------------------------------------------------------------- 1 | vt200-js -------------------------------------------------------------------------------- /lib/terminfo/v/vt300: -------------------------------------------------------------------------------- 1 | vt320 -------------------------------------------------------------------------------- /lib/terminfo/v/vt300-nam: -------------------------------------------------------------------------------- 1 | vt320-nam -------------------------------------------------------------------------------- /lib/terminfo/v/vt300-w: -------------------------------------------------------------------------------- 1 | vt320-w -------------------------------------------------------------------------------- /lib/terminfo/v/vt300-w-nam: -------------------------------------------------------------------------------- 1 | vt320-w-nam -------------------------------------------------------------------------------- /lib/terminfo/v/vt330: -------------------------------------------------------------------------------- 1 | vt340 -------------------------------------------------------------------------------- /lib/terminfo/v/vt400-24: -------------------------------------------------------------------------------- 1 | vt400 -------------------------------------------------------------------------------- /lib/terminfo/v/vt61.5: -------------------------------------------------------------------------------- 1 | vt61 -------------------------------------------------------------------------------- /lib/terminfo/v/vte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/v/vte -------------------------------------------------------------------------------- /lib/terminfo/v/vtnt: -------------------------------------------------------------------------------- 1 | ../m/ms-vt100-color -------------------------------------------------------------------------------- /lib/terminfo/v/vv100: -------------------------------------------------------------------------------- 1 | ../m/mvterm -------------------------------------------------------------------------------- /lib/terminfo/w/wren: -------------------------------------------------------------------------------- 1 | ../p/pt100 -------------------------------------------------------------------------------- /lib/terminfo/w/wrenw: -------------------------------------------------------------------------------- 1 | ../p/pt100w -------------------------------------------------------------------------------- /lib/terminfo/w/wy-75ap: -------------------------------------------------------------------------------- 1 | wy75ap -------------------------------------------------------------------------------- /lib/terminfo/w/wy-99fgt: -------------------------------------------------------------------------------- 1 | wy99f -------------------------------------------------------------------------------- /lib/terminfo/w/wy-99fgta: -------------------------------------------------------------------------------- 1 | wy99fa -------------------------------------------------------------------------------- /lib/terminfo/w/wy120-wvb: -------------------------------------------------------------------------------- 1 | wy120-w-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wy150: -------------------------------------------------------------------------------- 1 | wy120 -------------------------------------------------------------------------------- /lib/terminfo/w/wy150-25: -------------------------------------------------------------------------------- 1 | wy120-25 -------------------------------------------------------------------------------- /lib/terminfo/w/wy150-25-w: -------------------------------------------------------------------------------- 1 | wy120-25-w -------------------------------------------------------------------------------- /lib/terminfo/w/wy150-vb: -------------------------------------------------------------------------------- 1 | wy120-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wy150-w: -------------------------------------------------------------------------------- 1 | wy120-w -------------------------------------------------------------------------------- /lib/terminfo/w/wy150-w-vb: -------------------------------------------------------------------------------- 1 | wy120-w-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wy160-wvb: -------------------------------------------------------------------------------- 1 | wy160-w-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wy325-42wvb: -------------------------------------------------------------------------------- 1 | wy325-42w-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wy325-43wvb: -------------------------------------------------------------------------------- 1 | wy325-43w-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wy325-80: -------------------------------------------------------------------------------- 1 | wy325-25 -------------------------------------------------------------------------------- /lib/terminfo/w/wy325-wvb: -------------------------------------------------------------------------------- 1 | wy325-w-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wy325w-24: -------------------------------------------------------------------------------- 1 | wy325-w -------------------------------------------------------------------------------- /lib/terminfo/w/wy370-101k: -------------------------------------------------------------------------------- 1 | wy370 -------------------------------------------------------------------------------- /lib/terminfo/w/wy60-316X: -------------------------------------------------------------------------------- 1 | ../i/ibm3161 -------------------------------------------------------------------------------- /lib/terminfo/w/wy60-AT: -------------------------------------------------------------------------------- 1 | ../i/ibm5151 -------------------------------------------------------------------------------- /lib/terminfo/w/wy60-PC: -------------------------------------------------------------------------------- 1 | ../i/ibmpc -------------------------------------------------------------------------------- /lib/terminfo/w/wy60-wvb: -------------------------------------------------------------------------------- 1 | wy60-w-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wy99fgt: -------------------------------------------------------------------------------- 1 | wy99f -------------------------------------------------------------------------------- /lib/terminfo/w/wy99fgta: -------------------------------------------------------------------------------- 1 | wy99fa -------------------------------------------------------------------------------- /lib/terminfo/w/wy99gt-wvb: -------------------------------------------------------------------------------- 1 | wy99gt-w-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse-325: -------------------------------------------------------------------------------- 1 | wy325-25 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse-75ap: -------------------------------------------------------------------------------- 1 | wy75ap -------------------------------------------------------------------------------- /lib/terminfo/w/wyse120: -------------------------------------------------------------------------------- 1 | wy120 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse120-25: -------------------------------------------------------------------------------- 1 | wy120-25 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse120-25-w: -------------------------------------------------------------------------------- 1 | wy120-25-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse120-vb: -------------------------------------------------------------------------------- 1 | wy120-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse120-w: -------------------------------------------------------------------------------- 1 | wy120-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse120-wvb: -------------------------------------------------------------------------------- 1 | wy120-w-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse150: -------------------------------------------------------------------------------- 1 | wy120 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse150-25: -------------------------------------------------------------------------------- 1 | wy120-25 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse150-25-w: -------------------------------------------------------------------------------- 1 | wy120-25-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse150-vb: -------------------------------------------------------------------------------- 1 | wy120-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse150-w: -------------------------------------------------------------------------------- 1 | wy120-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse150-w-vb: -------------------------------------------------------------------------------- 1 | wy120-w-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse160: -------------------------------------------------------------------------------- 1 | wy160 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse160-25: -------------------------------------------------------------------------------- 1 | wy160-25 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse160-25-w: -------------------------------------------------------------------------------- 1 | wy160-25-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse160-42: -------------------------------------------------------------------------------- 1 | wy160-42 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse160-42-w: -------------------------------------------------------------------------------- 1 | wy160-42-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse160-43: -------------------------------------------------------------------------------- 1 | wy160-43 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse160-43-w: -------------------------------------------------------------------------------- 1 | wy160-43-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse160-vb: -------------------------------------------------------------------------------- 1 | wy160-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse160-w: -------------------------------------------------------------------------------- 1 | wy160-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse160-wvb: -------------------------------------------------------------------------------- 1 | wy160-w-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse185: -------------------------------------------------------------------------------- 1 | wy185 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse185-24: -------------------------------------------------------------------------------- 1 | wy185-24 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse185-vb: -------------------------------------------------------------------------------- 1 | wy185-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse185-w: -------------------------------------------------------------------------------- 1 | wy185-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse185-wvb: -------------------------------------------------------------------------------- 1 | wy185-wvb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse30: -------------------------------------------------------------------------------- 1 | wy30 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse30-mc: -------------------------------------------------------------------------------- 1 | wy30-mc -------------------------------------------------------------------------------- /lib/terminfo/w/wyse30-vb: -------------------------------------------------------------------------------- 1 | wy30-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse325: -------------------------------------------------------------------------------- 1 | wy325 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse325-25: -------------------------------------------------------------------------------- 1 | wy325-25 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse325-25w: -------------------------------------------------------------------------------- 1 | wy325-25w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse325-42: -------------------------------------------------------------------------------- 1 | wy325-42 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse325-42w: -------------------------------------------------------------------------------- 1 | wy325-42w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse325-43: -------------------------------------------------------------------------------- 1 | wy325-43 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse325-43w: -------------------------------------------------------------------------------- 1 | wy325-43w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse325-vb: -------------------------------------------------------------------------------- 1 | wy325-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse325-w: -------------------------------------------------------------------------------- 1 | wy325-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse325-wvb: -------------------------------------------------------------------------------- 1 | wy325-w-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse350: -------------------------------------------------------------------------------- 1 | wy350 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse350-vb: -------------------------------------------------------------------------------- 1 | wy350-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse350-w: -------------------------------------------------------------------------------- 1 | wy350-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse350-wvb: -------------------------------------------------------------------------------- 1 | wy350-wvb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse370: -------------------------------------------------------------------------------- 1 | wy370 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse50: -------------------------------------------------------------------------------- 1 | wy50 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse50-mc: -------------------------------------------------------------------------------- 1 | wy50-mc -------------------------------------------------------------------------------- /lib/terminfo/w/wyse50-vb: -------------------------------------------------------------------------------- 1 | wy50-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse50-w: -------------------------------------------------------------------------------- 1 | wy50-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse50-wvb: -------------------------------------------------------------------------------- 1 | wy50-wvb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse520: -------------------------------------------------------------------------------- 1 | wy520 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse520-24: -------------------------------------------------------------------------------- 1 | wy520-24 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse520-36: -------------------------------------------------------------------------------- 1 | wy520-36 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse520-36pc: -------------------------------------------------------------------------------- 1 | wy520-36pc -------------------------------------------------------------------------------- /lib/terminfo/w/wyse520-36w: -------------------------------------------------------------------------------- 1 | wy520-36w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse520-36wpc: -------------------------------------------------------------------------------- 1 | wy520-36wpc -------------------------------------------------------------------------------- /lib/terminfo/w/wyse520-48: -------------------------------------------------------------------------------- 1 | wy520-48 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse520-48pc: -------------------------------------------------------------------------------- 1 | wy520-48pc -------------------------------------------------------------------------------- /lib/terminfo/w/wyse520-48w: -------------------------------------------------------------------------------- 1 | wy520-48w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse520-48wpc: -------------------------------------------------------------------------------- 1 | wy520-48wpc -------------------------------------------------------------------------------- /lib/terminfo/w/wyse520-epc: -------------------------------------------------------------------------------- 1 | wy520-epc -------------------------------------------------------------------------------- /lib/terminfo/w/wyse520-epc-w: -------------------------------------------------------------------------------- 1 | wy520-epc-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse520-p-wvb: -------------------------------------------------------------------------------- 1 | wy520-epc-wvb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse520-pc-24: -------------------------------------------------------------------------------- 1 | wy520-epc-24 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse520-pc-vb: -------------------------------------------------------------------------------- 1 | wy520-epc-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse520-vb: -------------------------------------------------------------------------------- 1 | wy520-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse520-w: -------------------------------------------------------------------------------- 1 | wy520-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse520-wvb: -------------------------------------------------------------------------------- 1 | wy520-wvb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse60: -------------------------------------------------------------------------------- 1 | wy60 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse60-25: -------------------------------------------------------------------------------- 1 | wy60-25 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse60-25-w: -------------------------------------------------------------------------------- 1 | wy60-25-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse60-316X: -------------------------------------------------------------------------------- 1 | ../i/ibm3161 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse60-42: -------------------------------------------------------------------------------- 1 | wy60-42 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse60-42-w: -------------------------------------------------------------------------------- 1 | wy60-42-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse60-43: -------------------------------------------------------------------------------- 1 | wy60-43 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse60-43-w: -------------------------------------------------------------------------------- 1 | wy60-43-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse60-AT: -------------------------------------------------------------------------------- 1 | ../i/ibm5151 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse60-PC: -------------------------------------------------------------------------------- 1 | ../i/ibmpc -------------------------------------------------------------------------------- /lib/terminfo/w/wyse60-vb: -------------------------------------------------------------------------------- 1 | wy60-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse60-w: -------------------------------------------------------------------------------- 1 | wy60-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse60-wvb: -------------------------------------------------------------------------------- 1 | wy60-w-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse75: -------------------------------------------------------------------------------- 1 | wy75 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse75-mc: -------------------------------------------------------------------------------- 1 | wy75-mc -------------------------------------------------------------------------------- /lib/terminfo/w/wyse75-vb: -------------------------------------------------------------------------------- 1 | wy75-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse75-w: -------------------------------------------------------------------------------- 1 | wy75-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse75-wvb: -------------------------------------------------------------------------------- 1 | wy75-wvb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse75ap: -------------------------------------------------------------------------------- 1 | wy75ap -------------------------------------------------------------------------------- /lib/terminfo/w/wyse85: -------------------------------------------------------------------------------- 1 | wy85 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse85-8bit: -------------------------------------------------------------------------------- 1 | wy85-8bit -------------------------------------------------------------------------------- /lib/terminfo/w/wyse85-vb: -------------------------------------------------------------------------------- 1 | wy85-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse85-w: -------------------------------------------------------------------------------- 1 | wy85-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse85-wvb: -------------------------------------------------------------------------------- 1 | wy85-wvb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse99gt: -------------------------------------------------------------------------------- 1 | wy99gt -------------------------------------------------------------------------------- /lib/terminfo/w/wyse99gt-25: -------------------------------------------------------------------------------- 1 | wy99gt-25 -------------------------------------------------------------------------------- /lib/terminfo/w/wyse99gt-25-w: -------------------------------------------------------------------------------- 1 | wy99gt-25-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse99gt-vb: -------------------------------------------------------------------------------- 1 | wy99gt-vb -------------------------------------------------------------------------------- /lib/terminfo/w/wyse99gt-w: -------------------------------------------------------------------------------- 1 | wy99gt-w -------------------------------------------------------------------------------- /lib/terminfo/w/wyse99gt-wvb: -------------------------------------------------------------------------------- 1 | wy99gt-w-vb -------------------------------------------------------------------------------- /lib/terminfo/x/x1700: -------------------------------------------------------------------------------- 1 | ../d/diablo1640 -------------------------------------------------------------------------------- /lib/terminfo/x/x1700-lm: -------------------------------------------------------------------------------- 1 | ../d/diablo1740-lm -------------------------------------------------------------------------------- /lib/terminfo/x/x1720: -------------------------------------------------------------------------------- 1 | xerox1720 -------------------------------------------------------------------------------- /lib/terminfo/x/x1750: -------------------------------------------------------------------------------- 1 | xerox1720 -------------------------------------------------------------------------------- /lib/terminfo/x/x68k-ite: -------------------------------------------------------------------------------- 1 | x68k -------------------------------------------------------------------------------- /lib/terminfo/x/x820: -------------------------------------------------------------------------------- 1 | xerox820 -------------------------------------------------------------------------------- /lib/terminfo/x/xdku: -------------------------------------------------------------------------------- 1 | ../t/tws2103 -------------------------------------------------------------------------------- /lib/terminfo/x/xenix: -------------------------------------------------------------------------------- 1 | ../i/ibmpcx -------------------------------------------------------------------------------- /lib/terminfo/x/xerox: -------------------------------------------------------------------------------- 1 | ../d/diablo1640 -------------------------------------------------------------------------------- /lib/terminfo/x/xerox-lm: -------------------------------------------------------------------------------- 1 | ../d/diablo1640-lm -------------------------------------------------------------------------------- /lib/terminfo/x/xl83: -------------------------------------------------------------------------------- 1 | ../c/cyb83 -------------------------------------------------------------------------------- /lib/terminfo/x/xterms: -------------------------------------------------------------------------------- 1 | xterm-24 -------------------------------------------------------------------------------- /lib/terminfo/x/xwsh: -------------------------------------------------------------------------------- 1 | ../i/iris-color -------------------------------------------------------------------------------- /lib/terminfo/z/z-100: -------------------------------------------------------------------------------- 1 | z100 -------------------------------------------------------------------------------- /lib/terminfo/z/z-100bw: -------------------------------------------------------------------------------- 1 | z100bw -------------------------------------------------------------------------------- /lib/terminfo/z/z110: -------------------------------------------------------------------------------- 1 | z100 -------------------------------------------------------------------------------- /lib/terminfo/z/z110bw: -------------------------------------------------------------------------------- 1 | z100bw -------------------------------------------------------------------------------- /lib/terminfo/z/z19: -------------------------------------------------------------------------------- 1 | ../h/h19 -------------------------------------------------------------------------------- /lib/terminfo/z/z29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/z/z29 -------------------------------------------------------------------------------- /lib/terminfo/z/z29a-kc-bc: -------------------------------------------------------------------------------- 1 | z29a -------------------------------------------------------------------------------- /lib/terminfo/z/z29b: -------------------------------------------------------------------------------- 1 | z29 -------------------------------------------------------------------------------- /lib/terminfo/z/z30: -------------------------------------------------------------------------------- 1 | zen30 -------------------------------------------------------------------------------- /lib/terminfo/z/z39a: -------------------------------------------------------------------------------- 1 | z39-a -------------------------------------------------------------------------------- /lib/terminfo/z/z50: -------------------------------------------------------------------------------- 1 | zen50 -------------------------------------------------------------------------------- /lib/terminfo/z/z8001: -------------------------------------------------------------------------------- 1 | ../c/cci -------------------------------------------------------------------------------- /lib/terminfo/z/zen8001: -------------------------------------------------------------------------------- 1 | ../c/cci -------------------------------------------------------------------------------- /lib/terminfo/z/zenith: -------------------------------------------------------------------------------- 1 | ../h/h19 -------------------------------------------------------------------------------- /lib/terminfo/z/zenith29: -------------------------------------------------------------------------------- 1 | z29 -------------------------------------------------------------------------------- /lib/terminfo/z/zenith39-a: -------------------------------------------------------------------------------- 1 | z39-a -------------------------------------------------------------------------------- /lib/terminfo/z/zenith39-ansi: -------------------------------------------------------------------------------- 1 | z39-a -------------------------------------------------------------------------------- /lib/terminfo/z/zt-1: -------------------------------------------------------------------------------- 1 | ztx -------------------------------------------------------------------------------- /lib/terminfo/z/ztx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/lib/terminfo/z/ztx -------------------------------------------------------------------------------- /lib/terminfo/z/ztx-1-a: -------------------------------------------------------------------------------- 1 | ztx -------------------------------------------------------------------------------- /lib/terminfo/z/ztx11: -------------------------------------------------------------------------------- 1 | ztx -------------------------------------------------------------------------------- /misc/run_tic.sed: -------------------------------------------------------------------------------- 1 | s%/usr/share/tabset%/system/share/tabset%g 2 | -------------------------------------------------------------------------------- /misc/tabset/stdcrt: -------------------------------------------------------------------------------- 1 | 3 1 1 1 1 1 1 1 1 1 -------------------------------------------------------------------------------- /misc/tabset/vt300: -------------------------------------------------------------------------------- 1 | 2 |  3 | P2$t9/17/25/33/41/49/57/65/73/81/89/97/105/113/121/129\ 4 | -------------------------------------------------------------------------------- /ncurses/make_hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/ncurses/make_hash -------------------------------------------------------------------------------- /ncurses/make_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/ncurses/make_keys -------------------------------------------------------------------------------- /package/debian-mingw/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /package/debian-mingw/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /package/debian-mingw/watch: -------------------------------------------------------------------------------- 1 | version=3 2 | 3 | opts=passive ftp://invisible-island.net/ncurses/current/ncurses\.tar.gz \ 4 | debian uupdate 5 | -------------------------------------------------------------------------------- /package/debian-mingw64/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /package/debian-mingw64/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /package/debian-mingw64/watch: -------------------------------------------------------------------------------- 1 | version=3 2 | 3 | opts=passive ftp://invisible-island.net/ncurses/current/ncurses\.tar.gz \ 4 | debian uupdate 5 | -------------------------------------------------------------------------------- /package/debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /package/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /package/debian/watch: -------------------------------------------------------------------------------- 1 | version=3 2 | 3 | opts=passive ftp://invisible-island.net/ncurses/current/ncurses\.tar.gz \ 4 | debian uupdate 5 | -------------------------------------------------------------------------------- /progs/clear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/progs/clear -------------------------------------------------------------------------------- /progs/infocmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/progs/infocmp -------------------------------------------------------------------------------- /progs/tabs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/progs/tabs -------------------------------------------------------------------------------- /progs/tic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/progs/tic -------------------------------------------------------------------------------- /progs/toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/progs/toe -------------------------------------------------------------------------------- /progs/tput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/progs/tput -------------------------------------------------------------------------------- /progs/tset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/progs/tset -------------------------------------------------------------------------------- /test/background: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/test/background -------------------------------------------------------------------------------- /test/blue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/test/blue -------------------------------------------------------------------------------- /test/bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_libncurses/067ae32f7e4b45bb1cb7ba37d0ffe618905e049f/test/bs -------------------------------------------------------------------------------- /test/package/debian-mingw/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /test/package/debian-mingw/docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /test/package/debian-mingw/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /test/package/debian-mingw64/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /test/package/debian-mingw64/docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /test/package/debian-mingw64/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /test/package/debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /test/package/debian/docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /test/package/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | --------------------------------------------------------------------------------