aboutsummaryrefslogtreecommitdiff
path: root/src/cyn_file_std.c
blob: 31068189a35f35800826ee4fb2927582d82df0ac (plain)
1
2
3
4
5
6
7
8
9
10

File_Handle *cyn_file_open(String path, File_Status *status) {
    UNUSED(path);

    if (status != NULL) {
        *status = CYN_FILE_ERROR;
    }

    return NULL;
}