#include "defs.h" char newname[]; concat(s1,c,s2) STRING s1, s2; CHAR c; { REG CHAR *np; np=movstr(s1,newname); *np++ = c; movstr(s2,np); } gen(s) REG STRING s; { REG CHAR c; REG INT bra = -1; while(c = *s++) { if(c=='[' || c=='<') bra=1; if(any(c, "?*")) return(0); } return(bra); }