mirror of
https://git.gnunet.org/libmicrohttpd.git
synced 2026-09-25 04:09:31 +03:00
GENERATED: C89/C99
This commit is contained in:
@@ -22,7 +22,9 @@ MHD_daemon_set_options (struct MHD_Daemon *daemon,
|
||||
const struct MHD_DaemonOptionAndValue *options,
|
||||
size_t options_max_num)
|
||||
{
|
||||
for (size_t i=0;i<options_max_num;i++)
|
||||
size_t i;
|
||||
|
||||
for (i=0;i<options_max_num;i++)
|
||||
{
|
||||
switch (options[i].opt) {
|
||||
case MHD_D_OPTION_WORK_MODE:
|
||||
|
||||
@@ -21,7 +21,9 @@ MHD_response_set_options (struct MHD_Response *response,
|
||||
const struct MHD_ResponseOptionAndValue *options,
|
||||
size_t options_max_num)
|
||||
{
|
||||
for (size_t i=0;i<options_max_num;i++)
|
||||
size_t i;
|
||||
|
||||
for (i=0;i<options_max_num;i++)
|
||||
{
|
||||
switch (options[i].opt) {
|
||||
case MHD_R_OPTION_REUSABLE:
|
||||
|
||||
Reference in New Issue
Block a user