Skip to content

get_query()

get_query() is a macro for getting query string from request. It runs get_req() function under the hood.

#include "ecewo.h"
void hello_world(Req *req, Res *res)
{
const char *name = get_query("name");
}