stuff-from-scratch/src/console/TermInfo.h
2023-12-18 10:16:31 +00:00

17 lines
293 B
C++

#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();
};