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.
Audit
Dependencies
No dependency data recorded yet.
Resources
No resource links recorded.