mirror of
https://git.gnunet.org/libmicrohttpd.git
synced 2026-09-25 04:09:31 +03:00
18 lines
302 B
Plaintext
18 lines
302 B
Plaintext
/**
|
|
{{SComment}}
|
|
* @return the object of struct MHD_DaemonOptionAndValue with the requested
|
|
* values
|
|
*/
|
|
static MHD_INLINE struct MHD_DaemonOptionAndValue
|
|
{{SName}} ({{SFArguments}})
|
|
{
|
|
struct MHD_DaemonOptionAndValue opt_val;
|
|
|
|
opt_val.opt = {{EName}};
|
|
{{SFBody}}
|
|
|
|
return opt_val;
|
|
}
|
|
|
|
|