naett.c

Tiny cross-platform HTTP / HTTPS client library in C.
git clone git://git.finwo.net/lib/naett.c
Log | Files | Refs | README | LICENSE

commit 31cd72981b33a41297219c1249e065bc130da313
parent 0510ca39310ffd1482eb363672acb29ac16ba9e8
Author: Erik Agsjö <erik.agsjo@gmail.com>
Date:   Sun, 12 Dec 2021 23:57:47 +0100

README

Diffstat:
MREADME.md | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md @@ -6,9 +6,10 @@ Wraps native HTTP client functionality on macOS, Windows, Linux, iOS and Android ## Using `naett` -Get the `naett.c` and `naett.h` files and throw them into your project. Checkout the [example](./example) for a basic `Makefile` - based setup. +Get the `naett.c` and `naett.h` files and throw them into your project. Check out the [example](./example) for a basic `Makefile` - based setup. -The library needs to be initialized by a call to `naettInit()`. On Android, you need to provide a `JavaVM*` handle in the call to `naettInit()`. On the other platforms, call with `NULL`. +The library needs to be initialized by a call to `naettInit()`. On Android, you need to provide a `JavaVM*` handle in the call to `naettInit()`. +On the other platforms, call with `NULL`. See `naett.h` for reference docs. @@ -22,7 +23,6 @@ See `naett.h` for reference docs. | Windows | WinHTTP Sessions | -lwinhttp | | Android | java.net.URL | NDK | | Linux | libcurl | -lcurl -lpthread | -| | | ### Example