MCPcopy Create free account
hub / github.com/ProgerXP/Notepad2e / StrTab2Space

Function StrTab2Space

src/Helpers.c:1278–1284  ·  view source on GitHub ↗

============================================================================= StrTab2Space() - in place conversion

Source from the content-addressed store, hash-verified

1276// StrTab2Space() - in place conversion
1277//
1278void StrTab2Space ( LPWSTR lpsz )
1279{
1280 WCHAR *c = lpsz;
1281 while ( c = StrChr ( lpsz, L'\t' ) ) {
1282 *c = L' ';
1283 }
1284}
1285
1286
1287//=============================================================================

Callers 2

ParseCommandLineFunction · 0.85
RelaunchMultiInstFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected