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