mirror of
https://git.savannah.gnu.org/git/screen.git
synced 2026-02-12 02:12:21 +02:00
TERMCAP_BUF defaults to 1023 to create TERMCAP entries that work on most systems. To save space, TERMCAP is unwrapped, and vt220 extra keys are skipped (unless TERMCAP_BUF > 1023); navigation keys are still included. Entries larger than TERMCAP_BUF are now truncated, and no longer Panic screen. Termcap entries are still wrapped when saved to a file. Signed-off-by: Scott Shambarger <devel@shambarger.net>
7 lines
127 B
C
7 lines
127 B
C
#ifndef SCREEN_DUMPTERMCAP_H
|
|
#define SCREEN_DUMPTERMCAP_H
|
|
|
|
void DumpTermcap (int, FILE *);
|
|
|
|
#endif /* SCREEN_DUMPTERMCAP_H */
|