forked from Telodendria/Telodendria
Format source code.
This commit is contained in:
parent
78d4524b77
commit
79fc20314f
1 changed files with 11 additions and 11 deletions
22
src/Http.c
22
src/Http.c
|
@ -373,11 +373,11 @@ HttpUrlDecode(char *str)
|
||||||
}
|
}
|
||||||
|
|
||||||
HashMap *
|
HashMap *
|
||||||
HttpParamDecode(FILE *in)
|
HttpParamDecode(FILE * in)
|
||||||
{
|
{
|
||||||
/* TODO */
|
/* TODO */
|
||||||
(void) in;
|
(void) in;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -386,18 +386,18 @@ HttpParamEncode(HashMap * params, FILE * out)
|
||||||
char *key;
|
char *key;
|
||||||
char *val;
|
char *val;
|
||||||
|
|
||||||
if (!params || ! out)
|
if (!params || !out)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
while (HashMapIterate(params, &key, (void *) &val))
|
while (HashMapIterate(params, &key, (void *) &val))
|
||||||
{
|
{
|
||||||
char *encKey;
|
char *encKey;
|
||||||
char *encVal;
|
char *encVal;
|
||||||
|
|
||||||
encKey = HttpUrlEncode(key);
|
encKey = HttpUrlEncode(key);
|
||||||
encVal = HttpUrlEncode(val);
|
encVal = HttpUrlEncode(val);
|
||||||
|
|
||||||
if (!encKey || !encVal)
|
if (!encKey || !encVal)
|
||||||
{
|
{
|
||||||
|
@ -405,9 +405,9 @@ HttpParamEncode(HashMap * params, FILE * out)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
fprintf(out, "%s=%s&", encKey, encVal);
|
fprintf(out, "%s=%s&", encKey, encVal);
|
||||||
|
|
||||||
free(encKey);
|
free(encKey);
|
||||||
free(encVal);
|
free(encVal);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue