MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / ISC_escape

Function ISC_escape

src/common/isc_file.cpp:1862–1872  ·  view source on GitHub ↗

Escape Unicode characters from a string

Source from the content-addressed store, hash-verified

1860
1861// Escape Unicode characters from a string
1862void ISC_escape(AbstractString& /*str*/)
1863{
1864#ifdef NOT_USED_OR_REPLACED // CORE-2929
1865 size_t pos = 0;
1866 while ((pos = str.find_first_of("#", pos)) != npos)
1867 {
1868 str.insert(pos, "#");
1869 pos += 2;
1870 }
1871#endif
1872}
1873
1874
1875#ifdef NOT_USED_OR_REPLACED // CORE-2929

Callers 4

add_other_paramsFunction · 0.85
add_working_directoryFunction · 0.85
addClumpletsFunction · 0.85
expandDatabaseNameFunction · 0.85

Calls 2

find_first_ofMethod · 0.45
insertMethod · 0.45

Tested by

no test coverage detected