MCPcopy Create free account
hub / github.com/apache/nuttx / substitute

Function substitute

tools/configure.c:1225–1234  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1223}
1224
1225static void substitute(char *str, int ch1, int ch2)
1226{
1227 for (; *str; str++)
1228 {
1229 if (*str == ch1)
1230 {
1231 *str = ch2;
1232 }
1233 }
1234}
1235
1236static char *double_appdir_backslashes(char *old_appdir)
1237{

Callers 1

configureFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected