aboutsummaryrefslogtreecommitdiff
path: root/src/urlencoded.h
blob: 5933669c594f72fab537af27860e287ddee51f2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef MAGI_INCLUDED_URLENCODED
#define MAGI_INCLUDED_URLENCODED

#include "error.h"
#include "param.h"


/* Add decoded params from 'encoded' to 'list'. */
enum magi_error magi_parse_urlencoded(struct magi_params **list,
                                      const char          *encoded);


#endif