Files
scyther/src/color.c
2006-01-02 21:06:08 +00:00

651 B

/** @file color.c \brief Color output for terminals.
*
* Depends on the switches (to disable them with a --plain switch)
*/
 
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include "switches.h"
 
//! Substitution string for --plain output
char *empty = "";
//! Reset colors
char *COLOR_Reset = "";
//! Red
char *COLOR_Red = "";
//! Green
char *COLOR_Green = "";
//! Bold
char *COLOR_Bold = "";
 
//! Init colors
void
colorInit (void)
{
if (switches.plain)
{
COLOR_Reset = empty;
COLOR_Red = empty;
COLOR_Green = empty;
COLOR_Bold = empty;
}
}
 
//! Exit colors
void
colorDone (void)
{
}