]> git.tdb.fi Git - libs/net.git/blobdiff - source/utils.h
Support handling requests asynchronously
[libs/net.git] / source / utils.h
diff --git a/source/utils.h b/source/utils.h
new file mode 100644 (file)
index 0000000..76127a4
--- /dev/null
@@ -0,0 +1,22 @@
+/* $Id$
+
+This file is part of libmsphttp
+Copyright © 2009  Mikko Rasa, Mikkosoft Productions
+Distributed under the LGPL
+*/
+
+#ifndef MSP_HTTP_UTILS_H_
+#define MSP_HTTP_UTILS_H_
+
+#include <string>
+
+namespace Msp {
+namespace Http {
+
+std::string urlencode(const std::string &);
+std::string urldecode(const std::string &);
+
+} // namespace Http
+} // namespace Msp
+
+#endif