#include "defs.h" /* * * S. R. Bourne * Bell Telephone Laboratories * */ /* ======== general purpose string handling ======== */ INT equstr(s1, s2) REG STRING s1, s2; { while(*s1++ == *s2) { if(*s2++==0) { return(1); } } return(0); }