http_status_codes.hpp
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2025, NVIDIA CORPORATION.
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 
6 #pragma once
7 
8 #include <cstdint>
9 #include <string>
10 #include <vector>
11 
12 namespace kvikio {
13 namespace detail {
24 std::vector<int> parse_http_status_codes(std::string_view env_var_name,
25  std::string const& status_codes);
26 } // namespace detail
27 
28 } // namespace kvikio
KvikIO namespace.
Definition: batch.hpp:16