Initial test bootstrap.

This commit is contained in:
jmsgrogan 2023-12-18 10:16:31 +00:00
parent 6c618749f1
commit 4b308f6c32
94 changed files with 2543 additions and 681 deletions

17
src/console/TermInfo.h Normal file
View 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();
};