#include "defs.h" # /* * * S. R. Bourne * Bell Telephone Laboratories * */ /* ======== general purpose string handling ======== */ INT any(c,s) REG CHAR c; STRING s; { REG CHAR d; while(d = *s++) { if(d==c) { return(TRUE); } } return(FALSE); }