eedb/share/include/tao/json/external/pegtl/cr_crlf_eol.hh
2017-02-26 09:32:45 +01:00

30 lines
727 B
C++

// Copyright (c) 2016 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/ColinH/PEGTL/
#ifndef TAO_CPP_PEGTL_CR_CRLF_EOL_HH
#define TAO_CPP_PEGTL_CR_CRLF_EOL_HH
namespace tao_json_pegtl
{
struct cr_crlf_eol
{
static constexpr int ch = '\r';
template< typename Input >
static eol_pair match( Input & in )
{
eol_pair p = { false, in.size( 2 ) };
if ( p.second ) {
if ( in.peek_char() == '\r' ) {
in.bump_to_next_line( 1 + ( ( p.second > 1 ) && ( in.peek_char( 1 ) == '\n' ) ) );
p.first = true;
}
}
return p;
}
};
} // namespace tao_json_pegtl
#endif