/* copy the chars from b to a starting at n chars till m chars */ strnsplit(a[],b[],n,m) { new i; for(i=n;i<=m;i++) a[i-n]=b[i]; return 1; }