Index: flag.c =================================================================== --- flag.c (revision 4874) +++ flag.c (revision 4875) @@ -30,7 +30,7 @@ #include "flag.h" /* This just fills in a pcb_flag_t with current flags. */ -pcb_flag_t MakeFlags(unsigned int flags) +pcb_flag_t pcb_flag_make(unsigned int flags) { pcb_flag_t rv; memset(&rv, 0, sizeof(rv)); @@ -39,7 +39,7 @@ } /* This converts old flag bits (from saved PCB files) to new format. */ -pcb_flag_t OldFlags(unsigned int flags) +pcb_flag_t pcb_flag_old(unsigned int flags) { pcb_flag_t rv; int i, f; @@ -56,13 +56,13 @@ return rv; } -pcb_flag_t AddFlags(pcb_flag_t flag, unsigned int flags) +pcb_flag_t pcb_flag_add(pcb_flag_t flag, unsigned int flags) { flag.f |= flags; return flag; } -pcb_flag_t MaskFlags(pcb_flag_t flag, unsigned int flags) +pcb_flag_t pcb_flag_mask(pcb_flag_t flag, unsigned int flags) { flag.f &= ~flags; return flag; @@ -76,7 +76,7 @@ return 0; } -void EraseFlags(pcb_flag_t * f) +void pcb_flag_erase(pcb_flag_t * f) { pcb_unknown_flag_t *u, *next; for (u = f->unknowns; u != NULL; u = next) {