| Ed Tanous | 10c5765 | 2025-09-30 10:24:57 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: Apache-2.0 |
| 2 | // SPDX-FileCopyrightText: Copyright 2018 Intel Corporation | ||||
| 3 | |||||
| 4 | #pragma once | ||||
| 5 | |||||
| 6 | #include <array> | ||||
| 7 | #include <cstdint> | ||||
| 8 | #include <optional> | ||||
| 9 | #include <span> | ||||
| 10 | #include <string> | ||||
| 11 | #include <vector> | ||||
| 12 | |||||
| 13 | std::optional<std::string> gzipInflate(std::span<uint8_t> compressedBytes); | ||||
| 14 | |||||
| 15 | std::vector<std::string> getNodeFromXml(std::string_view xml, | ||||
| 16 | const char* nodeName); | ||||