date and time created 87/02/15 16:03:38 by lepreau
[unix-history] / usr / src / local / sccscmds / sccscmds.ok / util / trnslat.c
static char Sccsid[] "@(#)trnslat 2.2";
/*
Copy `str' to `result' replacing any character found
in both `str' and `old' with the corresponding character from `new'.
Return `result'.
*/
char *trnslat(str,old,new,result)
register char *str;
char *old, *new, *result;
{
register char *r, *o;
for (r = result; *r = *str++; r++)
for (o = old; *o; )
if (*r == *o++) {
*r = new[o - old -1];
break;
}
return(result);
}