tag.c
changeset 761 4e835c2a7a12
parent 757 22dfaeb82491
child 769 dc60583894e0
equal deleted inserted replaced
760:8ed842c35e8d 761:4e835c2a7a12
    28 
    28 
    29 static RReg *rreg = NULL;
    29 static RReg *rreg = NULL;
    30 static unsigned int len = 0;
    30 static unsigned int len = 0;
    31 
    31 
    32 /* extern */
    32 /* extern */
    33 
       
    34 Client *
       
    35 getnext(Client *c) {
       
    36 	for(; c && !isvisible(c); c = c->next);
       
    37 	return c;
       
    38 }
       
    39 
       
    40 Client *
       
    41 getprev(Client *c) {
       
    42 	for(; c && !isvisible(c); c = c->prev);
       
    43 	return c;
       
    44 }
       
    45 
    33 
    46 void
    34 void
    47 initrregs(void) {
    35 initrregs(void) {
    48 	unsigned int i;
    36 	unsigned int i;
    49 	regex_t *reg;
    37 	regex_t *reg;