diff options
author | Dan Winship <danw@src.gnome.org> | 2008-01-15 17:40:47 +0000 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2008-01-15 17:40:47 +0000 |
commit | 96d28e7f42ead1ddde6bccca9fba6831710a531f (patch) | |
tree | 8b3fd4ae679d19656aef6264cfcf260e515a8eec /libsoup/soup-form.h | |
parent | 3f957a48574e9ac8eba06cf91fb2f101ffcf982d (diff) | |
download | libsoup-96d28e7f42ead1ddde6bccca9fba6831710a531f.tar.gz |
Merge libsoup-2.4 branch to trunk
* Merge libsoup-2.4 branch to trunk
svn path=/trunk/; revision=1041
Diffstat (limited to 'libsoup/soup-form.h')
-rw-r--r-- | libsoup/soup-form.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/libsoup/soup-form.h b/libsoup/soup-form.h new file mode 100644 index 00000000..9502244c --- /dev/null +++ b/libsoup/soup-form.h @@ -0,0 +1,20 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Copyright 2008 Red Hat, Inc. + */ + +#ifndef SOUP_FORM_H +#define SOUP_FORM_H 1 + +#include <libsoup/soup-types.h> + +G_BEGIN_DECLS + +GHashTable *soup_form_decode_urlencoded (const char *encoded_form); + +char *soup_form_encode_urlencoded (GHashTable *form_data_set); +char *soup_form_encode_urlencoded_list (GData **form_data_set); + +G_END_DECLS + +#endif /* SOUP_FORM_H */ |