Initial test bootstrap.
This commit is contained in:
parent
6c618749f1
commit
4b308f6c32
94 changed files with 2543 additions and 681 deletions
17
src/console/TermInfo.h
Normal file
17
src/console/TermInfo.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
class TermInfo
|
||||
{
|
||||
// https://invisible-island.net/ncurses/
|
||||
// https://man7.org/linux/man-pages/man5/terminfo.5.html
|
||||
// Best grab a coffee
|
||||
public:
|
||||
bool load_terminfo(const std::string& terminfo_dir,
|
||||
const std::string& term);
|
||||
|
||||
void load();
|
||||
};
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue