Function
Soupform_decode
Declaration [src]
GHashTable*
soup_form_decode (
const char* encoded_form
)
Parameters
encoded_form
-
Type:
const char*
Data of type “application/x-www-form-urlencoded”
The data is owned by the caller of the function. The value is a NUL terminated UTF-8 string.
Return value
Type: GHashTable
A hash
table containing the name/value pairs from encoded_form
, which you
can free with g_hash_table_destroy()
.
The caller of the function takes ownership of the data container, but not the data inside it. |