File indexing completed on 2025-01-18 09:53:26
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_URL_DETAIL_PCT_FORMAT_HPP
0011 #define BOOST_URL_DETAIL_PCT_FORMAT_HPP
0012
0013 #include <boost/core/detail/string_view.hpp>
0014 #include <boost/url/url.hpp>
0015 #include <boost/url/grammar/lut_chars.hpp>
0016 #include <boost/url/detail/format_args.hpp>
0017
0018 namespace boost {
0019 namespace urls {
0020 namespace detail {
0021
0022
0023 BOOST_URL_DECL
0024 std::size_t
0025 pct_vmeasure(
0026 grammar::lut_chars const& cs,
0027 format_parse_context& pctx,
0028 measure_context& mctx);
0029
0030
0031 BOOST_URL_DECL
0032 char*
0033 pct_vformat(
0034 grammar::lut_chars const& cs,
0035 format_parse_context& pctx,
0036 format_context& fctx);
0037
0038 }
0039 }
0040 }
0041
0042 #endif