aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/Paragraphs.h
blob: 761b49759009c39281e466aa3da9cc67903fa632 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

#include "filesystem_fs.h"
#include <unordered_map>

namespace vcpkg::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);
}