-
Notifications
You must be signed in to change notification settings - Fork 8
/
clibrary.c
39 lines (34 loc) · 914 Bytes
/
clibrary.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include "clibrary.h"
#include <stdlib.h>
#include <stdio.h>
TILEDB_EXPORT int32_t _num_of_folders_in_path(
tiledb_ctx_t* ctx,
tiledb_vfs_t* vfs,
const char* path,
void* data) {
int32_t ret_val = tiledb_vfs_ls(ctx, vfs, path, numOfFragmentsInPath, data);
return ret_val;
}
TILEDB_EXPORT int32_t _vfs_ls(
tiledb_ctx_t* ctx,
tiledb_vfs_t* vfs,
const char* path,
void* data) {
int32_t ret_val = tiledb_vfs_ls(ctx, vfs, path, vfsLs, data);
return ret_val;
}
TILEDB_EXPORT int32_t _tiledb_object_walk(
tiledb_ctx_t* ctx,
const char* path,
tiledb_walk_order_t order,
void* data) {
int32_t ret_val = tiledb_object_walk(ctx, path, order, objectsInPath, data);
return ret_val;
}
TILEDB_EXPORT int32_t _tiledb_object_ls(
tiledb_ctx_t* ctx,
const char* path,
void* data) {
int32_t ret_val = tiledb_object_ls(ctx, path, objectsInPath, data);
return ret_val;
}