| 38 | namespace { |
| 39 | |
| 40 | string ExtractFirstPrompt(const stringstream& o) |
| 41 | { |
| 42 | auto content = o.str(); |
| 43 | std::size_t pos = content.find_first_of('>'); |
| 44 | return content.substr(0, pos); |
| 45 | } |
| 46 | |
| 47 | string ExtractLastPrompt(const stringstream& o) |
| 48 | { |
no outgoing calls
no test coverage detected