16 lines
274 B
Plaintext
Raw Normal View History

2025-03-07 02:25:53 +01:00
namespace seafire::protocol::grammar
{
/// Skip space.
///
template<typename InputIterator>
void
skip_space(InputIterator& it, InputIterator const& end)
{
while (it != end && is_space(*it)) {
++it;
}
}
} // namespace seafire::protocol::grammar