Database
aa795.asc
Associated article: Algorithm Alley
Tags: Database Tools Design
_ALGORITHM ALLEY_
written by Dean Clark
edited by Bruce Schneier
Example 1
/****************************************************************************
** AddColorToList
** Adds a color to the list of most popular colors in the image, if necessary
*****************************************************************************/
void AddColorToList(COLOR_NODE **popcolors, int npal, int *currentcount, COLOR_NODE *color)
{
COLOR_...


