blob: 65786f94ff980fc67030ff3c879391ff793601f5 [file] [log] [blame]
Greg Hartman76d05dc2016-11-23 15:51:27 -08001#include <ctype.h>
2
3/* Replace char 'old' by char 'new' in source */
4void chrreplace(char *source, char old, char new)
5{
6 while (*source) {
7 source++;
8 if (source[0] == old) source[0]=new;
9 }
10}
11