Skip to content

A single-header HTTP request library for C/C++.

Notifications You must be signed in to change notification settings

StepfenShawn/chttp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

What is Chttp?

Chttp is a single-header HTTP request library for C/C++.

Example

A http GET request example:

#include "chttp.h"

int main()
{
    /*
     * GET(host, port, path)
     */
    GET("www.baidu.com", 80, "");
    return 0;
}

TODO

  • support the Linux and Mac OS
  • Add more request types

Contribution

Welcome to pull a request!

About

A single-header HTTP request library for C/C++.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages