blob: 9e9fafe4972bd0b5e1ee6116a66230ec3ab09ee9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#include "filesystem_fs.h"
#include <unordered_map>
namespace vcpkg { namespace Paragraphs
{
std::vector<std::unordered_map<std::string, std::string>> get_paragraphs(const fs::path& control_path);
std::vector<std::unordered_map<std::string, std::string>> parse_paragraphs(const std::string& str);
}}
|