mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 19:50:45 +08:00
15 lines
623 B
C++
15 lines
623 B
C++
#pragma once
|
|
|
|
#include <unordered_map>
|
|
|
|
namespace vcpkg::details
|
|
{
|
|
std::string optional_field(const std::unordered_map<std::string, std::string>& fields, const std::string& fieldname);
|
|
std::string remove_optional_field(std::unordered_map<std::string, std::string>* fields, const std::string& fieldname);
|
|
|
|
std::string required_field(const std::unordered_map<std::string, std::string>& fields, const std::string& fieldname);
|
|
std::string remove_required_field(std::unordered_map<std::string, std::string>* fields, const std::string& fieldname);
|
|
|
|
std::string shorten_description(const std::string& desc);
|
|
}
|