| 291 | } |
| 292 | |
| 293 | static inline TAutoPtr<IOutputStream> OpenOutput(const TString& url) { |
| 294 | if (url.empty()) { |
| 295 | return new TBuffered<TUnbufferedFileOutput>(8192, Duplicate(1)); |
| 296 | } else { |
| 297 | return new TBuffered<TUnbufferedFileOutput>(8192, url); |
| 298 | } |
| 299 | } |
| 300 | |
| 301 | static inline bool IsDelim(char ch) noexcept { |
| 302 | return ch == '/' || ch == '\\'; |