]> git.tdb.fi Git - libs/net.git/blob - source/utils.h
Support handling requests asynchronously
[libs/net.git] / source / utils.h
1 /* $Id$
2
3 This file is part of libmsphttp
4 Copyright © 2009  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_HTTP_UTILS_H_
9 #define MSP_HTTP_UTILS_H_
10
11 #include <string>
12
13 namespace Msp {
14 namespace Http {
15
16 std::string urlencode(const std::string &);
17 std::string urldecode(const std::string &);
18
19 } // namespace Http
20 } // namespace Msp
21
22 #endif