mirror of
https://github.com/KingDuckZ/kamokan.git
synced 2025-01-13 19:56:40 +00:00
11 lines
301 B
C++
11 lines
301 B
C++
|
#pragma once
|
||
|
|
||
|
#include "duckhandy/compatibility.h"
|
||
|
#include <boost/utility/string_ref.hpp>
|
||
|
#include <vector>
|
||
|
#include <utility>
|
||
|
|
||
|
namespace tawashi {
|
||
|
std::vector<std::pair<boost::string_ref, boost::string_ref>> split_env_vars ( const std::string& parCommaSeparatedList ) a_pure;
|
||
|
} //namespace tawashi
|