StrReplace Function

Replace specified char in string to another char.

Syntax

void StrReplace(char *s, char old_sym, char new_sym);

Parameters

s - string for replace
old_sym - char for replacing
new_sym - new char

Return Value

N/A

Remarks

N/A

Requirements

string.h

Example

N/A