slow5lib-sys 0.2.0

Low-level bindings to the slow5lib C library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <sys/types.h>
#include <dirent.h>
#include <stdlib.h>
#include <string>

int main(int argc, char **argv) {
    std::string f_name = argv[1];
    auto dir = opendir(f_name.c_str());
    if(not dir) {
        return EXIT_FAILURE;
    }
    closedir(dir);
    return EXIT_SUCCESS;
}