Registry / utility / libwandio

libwandio

JSON →
library4.2.1vcpkgunverified

C library for simple and efficient file IO.

vcpkg install libwandio
INSTALL
IMPORT
SIG · LIBWANDIO
L
libwandio
utilitycppv4.2.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

wandio.h
#include <wandio.h>

Read a file using libwandio

#include <wandio.h> #include <stdio.h> int main() { iow_t *file = wandio_create("example.txt"); if (!file) { perror("wandio_create"); return 1; } char buf[256]; ssize_t n = wandio_read(file, buf, sizeof(buf)-1); if (n > 0) buf[n] = '\0', printf("%s", buf); wandio_destroy(file); return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
4.2.1latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources

No resource links recorded.

libwandio — pip install libwandio · libregistry