readcon-core 0.14.7

An oxidized single and multiple CON file reader and writer with FFI bindings for ergonomic C/C++ usage.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "readcon-core.h"

#include <stdio.h>
#include <string.h>

int main(void) {
    const char *version = rkr_library_version();
    if (version == NULL || strlen(version) == 0) {
        fprintf(stderr, "rkr_library_version returned empty\n");
        return 1;
    }
    printf("readcon-core %s\n", version);
    return 0;
}