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