3 #include "telnetpp/options/new_environ/detail/response_parser_helper.hpp"
5 namespace telnetpp::options::new_environ::detail {
7 template <
typename Continuation>
8 void for_each_response(telnetpp::bytes content, Continuation &&cont)
12 auto const *current = content.begin();
13 auto const *end = content.end();
15 while (current != end)
17 parse_byte(current++, state, cont);
20 parse_end(state, cont);