| 5 | #include <util/string/cast.h> |
| 6 | |
| 7 | static inline TStringBuf StripLeft(const TStringBuf& s) noexcept { |
| 8 | const char* b = s.begin(); |
| 9 | const char* e = s.end(); |
| 10 | |
| 11 | StripRangeBegin(b, e); |
| 12 | |
| 13 | return TStringBuf(b, e); |
| 14 | } |
| 15 | |
| 16 | TParsedHttpRequest::TParsedHttpRequest(const TStringBuf& str) { |
| 17 | TStringBuf tmp; |
no test coverage detected