aboutsummaryrefslogtreecommitdiff
path: root/src/urlenc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/urlenc.h')
-rw-r--r--src/urlenc.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/urlenc.h b/src/urlenc.h
new file mode 100644
index 0000000..9c14ccb
--- /dev/null
+++ b/src/urlenc.h
@@ -0,0 +1,13 @@
+#ifndef MAGI_INCLUDED_URLENC
+#define MAGI_INCLUDED_URLENC
+
+#include "request.h"
+
+
+void magi_urlenc(struct magi_request * request, const char * encoded);
+
+int magi_urlenc_size(const char * plain);
+void magi_urlencode(const char * plain, char * code);
+
+
+#endif