10 lines
171 B
C++
10 lines
171 B
C++
#ifndef __HTTP_BUILD_QUERY_H__
|
|
#define __HTTP_BUILD_QUERY_H__
|
|
|
|
#include <map>
|
|
#include <string>
|
|
|
|
std::string http_build_query(std::map<std::string, std::string>);
|
|
|
|
#endif
|