1 static char Sccsid[] = "@(#)repl.c	1.2	02/15/87";
2 /*
3 	Replace each occurrence of `old' with `new' in `str'.
4 	Return `str'.
5 */
6 
7 repl(str,old,new)
8 char *str;
9 char old,new;
10 {
11 	return(trnslat(str, &old, &new, str));
12 }
13