/*******************************************/
/*                                         */
/* colors.h                                */
/*                                         */
/* scol colors primitives                  */
/*                                         */
/* Loïc Berthelot, CryoNetworks, june 2002 */
/*                                         */
/*******************************************/




#ifndef _COLORS_H_
#define _COLORS_H_



int _COLOR_BGR_TO_I (unsigned char b, unsigned char g, unsigned char r);

void _COLOR_I_TO_BGR (int color, unsigned char *b, unsigned char *g, unsigned char *r);






#endif

