/tables-cpp

Primary LanguageC++MIT LicenseMIT

Tables C++

2 My functions to quickly output information in console in the form of a table

void ttable(
    std::vector<int> width,
    std::vector<std::string> columns,
    bool toleft);

void tline(
    std::vector<int> width);

Example

MIT License