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

Latest commit

 

History

History
35 lines (22 loc) · 456 Bytes

README.md

File metadata and controls

35 lines (22 loc) · 456 Bytes

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