slow5lib-sys 0.2.0

Low-level bindings to the slow5lib C library
Documentation
#include <stdio.h>
#include <stdlib.h>
//#include <unistd.h>

int main(void) {

    float *x = malloc(sizeof *x);
    *x = 32.0f;

    int *y = malloc(sizeof *y);
    *y = (int) *x;

    fwrite(y, sizeof *y, 1, stdout); 
    //write(STDOUT_FILENO, y, sizeof *y);

    free(x);
    free(y);

    return 0;
}