@ -97,19 +97,19 @@ static chr chrnamed(struct vars *, const chr *, const chr *, chr);
static void initcm ( struct vars * , struct colormap * ) ;
static void freecm ( struct colormap * ) ;
static void cmtreefree ( struct colormap * , union tree * , int ) ;
static color setcolor ( struct colormap * , chr , p color) ;
static color setcolor ( struct colormap * , chr , color ) ;
static color maxcolor ( struct colormap * ) ;
static color newcolor ( struct colormap * ) ;
static void freecolor ( struct colormap * , p color) ;
static void freecolor ( struct colormap * , color ) ;
static color pseudocolor ( struct colormap * ) ;
static color subcolor ( struct colormap * , chr c ) ;
static color newsub ( struct colormap * , p color) ;
static color newsub ( struct colormap * , color ) ;
static void subrange ( struct vars * , chr , chr , struct state * , struct state * ) ;
static void subblock ( struct vars * , chr , struct state * , struct state * ) ;
static void okcolors ( struct nfa * , struct colormap * ) ;
static void colorchain ( struct colormap * , struct arc * ) ;
static void uncolorchain ( struct colormap * , struct arc * ) ;
static void rainbow ( struct nfa * , struct colormap * , int , p color, struct state * , struct state * ) ;
static void rainbow ( struct nfa * , struct colormap * , int , color , struct state * , struct state * ) ;
static void colorcomplement ( struct nfa * , struct colormap * , int , struct state * , struct state * , struct state * ) ;
# ifdef REG_DEBUG
@ -125,13 +125,13 @@ static struct state *newfstate(struct nfa *, int flag);
static void dropstate ( struct nfa * , struct state * ) ;
static void freestate ( struct nfa * , struct state * ) ;
static void destroystate ( struct nfa * , struct state * ) ;
static void newarc ( struct nfa * , int , p color, struct state * , struct state * ) ;
static void createarc ( struct nfa * , int , p color, struct state * , struct state * ) ;
static void newarc ( struct nfa * , int , color , struct state * , struct state * ) ;
static void createarc ( struct nfa * , int , color , struct state * , struct state * ) ;
static struct arc * allocarc ( struct nfa * , struct state * ) ;
static void freearc ( struct nfa * , struct arc * ) ;
static void changearctarget ( struct arc * , struct state * ) ;
static int hasnonemptyout ( struct state * ) ;
static struct arc * findarc ( struct state * , int , p color) ;
static struct arc * findarc ( struct state * , int , color ) ;
static void cparc ( struct nfa * , struct arc * , struct state * , struct state * ) ;
static void sortins ( struct nfa * , struct state * ) ;
static int sortins_cmp ( const void * , const void * ) ;