CCF
Loading...
Searching...
No Matches
http_status.h
Go to the documentation of this file.
1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the Apache 2.0 License.
3#pragma once
4
5#include <llhttp/llhttp.h>
6
7using http_status = llhttp_status;
8
9/* Returns a string version of the HTTP status code. */
10static inline const char* http_status_str(http_status s)
11{
12 return llhttp_status_name(s);
13}
llhttp_status http_status
Definition http_status.h:7