stig

A CLI tool for searching GitHub from the terminal.


stig

/

src

/

stig

/

lang.hh

1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef OB_STIG_LANG_HH
#define OB_STIG_LANG_HH

#include <string>

namespace OB::Stig::Lang
{

std::string color(std::string const& lang);

} // namespace OB::Stig::Lang

#endif // OB_STIG_LANG_HH
Back to Top