Home | History | Annotate | Download | only in src
      1 #ifndef BENCHMARK_COLORPRINT_H_
      2 #define BENCHMARK_COLORPRINT_H_
      3 
      4 namespace benchmark {
      5 enum LogColor {
      6   COLOR_DEFAULT,
      7   COLOR_RED,
      8   COLOR_GREEN,
      9   COLOR_YELLOW,
     10   COLOR_BLUE,
     11   COLOR_MAGENTA,
     12   COLOR_CYAN,
     13   COLOR_WHITE
     14 };
     15 
     16 void ColorPrintf(LogColor color, const char* fmt, ...);
     17 }  // end namespace benchmark
     18 
     19 #endif  // BENCHMARK_COLORPRINT_H_
     20