| 179 | else return str; |
| 180 | } |
| 181 | std::string yellow(std::string str) { |
| 182 | if (usecolors) return "\033[33m" + str + "\033[0m"; |
| 183 | else return str; |
| 184 | } |
| 185 | std::string red(std::string str) { |
| 186 | if (usecolors) return "\033[31m" + str + "\033[0m"; |
| 187 | else return str; |