MCPcopy Create free account
hub / github.com/catboost/catboost / CgiUnescapeBuf

Function CgiUnescapeBuf

library/cpp/string_utils/quote/quote.h:36–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34TString CGIUnescapeRet(const TStringBuf from);
35
36inline TStringBuf CgiUnescapeBuf(char* to, const TStringBuf from) {
37 return TStringBuf(to, CGIUnescape(to, from.data(), from.size()));
38}
39inline TStringBuf CgiUnescape(void* tmp, const TStringBuf s) {
40 return CgiUnescapeBuf(static_cast<char*>(tmp), s);
41}

Callers 2

CgiUnescapeFunction · 0.85
TQuickCgiParamMethod · 0.85

Calls 3

CGIUnescapeFunction · 0.85
dataMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected