Skip to content
This repository has been archived by the owner on Apr 7, 2020. It is now read-only.

zx-project/zz-curl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

zz-curl

ZZ bindings for libcurl

Status

WIP

Installation

Still trying to figure that out

Usage

using zz_curl as curl

fn main() -> int {
  new request = curl::easy::init();

  request.setopt(curl::options::URL, "https://github.com");

  if curl::OK != request.perform() {
    printf("%s\n", request.error_string());
  }

  request.cleanup();
  return 0;
}

License

MIT