/
Boxapp
/
yadisk-helper
Обзор
Документация
Войти
/
Boxapp
/
yadisk-helper
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
parser.hpp
11 строк
378 B
DebianCougar
test build 2026.02-beta
30 янв 2026, 21:25
30 янв 2026, 21:25
eb3551d
Код
Авторство
О чём код?
#pragma once #include <map> #include <string> #include <vector> typedef std::vector<std::pair<std::string, std::string>> ConfigLines; typedef std::map<std::string, std::string> ConfigMap; ConfigMap get_config(const std::string &filename); // NOTE overwrites duplicate keys with last value ConfigLines parse(const std::string &filename); // NOTE does not merge duplicate keys