logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

ne_add_request_header, ne_print_request_header - add headers to a request

Description

       The functions ne_add_request_header and ne_print_request_header can be used to add headers to a request,
       before it is sent.

       ne_add_request_header simply adds a header of given name, with given value.

       ne_print_request_header adds a header of given name, taking the value from the printf-like format string
       parameter and subsequent variable-length argument list.

Name

       ne_add_request_header, ne_print_request_header - add headers to a request

See Also

       ne_request_create

Synopsis

#include<ne_request.h>voidne_add_request_header(ne_request*request,constchar*name,constchar*value);voidne_print_request_header(ne_request*request,constchar*name,constchar*format,...);

See Also