18 lines
297 B
C
18 lines
297 B
C
#ifndef lint
|
|
static char sccsid[] = "@(#)repl.c 1.1 92/07/30 SMI"; /* from System III 3.2 */
|
|
#endif
|
|
|
|
/*
|
|
Replace each occurrence of `old' with `new' in `str'.
|
|
Return `str'.
|
|
*/
|
|
|
|
char *repl(str,old,new)
|
|
char *str;
|
|
char old,new;
|
|
{
|
|
extern char *trnslat();
|
|
|
|
return(trnslat(str, &old, &new, str));
|
|
}
|