slow5lib-sys 0.4.0

Low-level bindings to the slow5lib C library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "../src/error.h"

int main(void) {
    ERROR("testing%s","");
    WARNING("testing%s","");
    SUCCESS("testing%s","");
    STDERR("testing%s","");
    INFO("testing%s","");
    DEBUG("testing%s","");

    //MALLOC_CHK(NULL);
    //F_CHK(NULL, __FILE__);
    //NULL_CHK(NULL);
    NEG_CHK(-10);

    return 0;
}