Home
last modified time | relevance | path

Searched refs:igp (Results 1 – 2 of 2) sorted by relevance

/original-bsd/usr.bin/mail/
H A Dcmd2.c446 register struct ignore *igp; local
456 igp = (struct ignore *) calloc(1, sizeof (struct ignore));
457 igp->i_field = calloc((unsigned) strlen(field) + 1,
459 strcpy(igp->i_field, field);
460 igp->i_link = tab->i_head[h];
461 tab->i_head[h] = igp;
476 struct ignore *igp; local
487 for (igp = tab->i_head[h]; igp != 0; igp = igp->i_link)
488 *ap++ = igp->i_field;
H A Daux.c672 register struct ignore *igp; local
674 for (igp = table->i_head[hash(realfield)]; igp != 0; igp = igp->i_link)
675 if (*igp->i_field == *realfield &&
676 equal(igp->i_field, realfield))