#ifndef UTIL_STRING_H_
#define UTIL_STRING_H_
#include <stdarg.h>
#include <string>
#include <utility>
#include <vector>
#include "vpd/export.h"
namespace vpd {
namespace util {
EXPORT bool GetNullDelimitedKeyValuePairs(
const std::string& content,
std::vector<std::pair<std::string, std::string>>& result);
EXPORT std::string StringPrintV(const char* format, va_list args);
} }
#endif