-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcbindgen.toml
More file actions
33 lines (30 loc) · 781 Bytes
/
Copy pathcbindgen.toml
File metadata and controls
33 lines (30 loc) · 781 Bytes
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
language = "C"
header = "/*\n * kore.h - generated by cbindgen, do not edit manually.\n * Regenerate with: cbindgen --config cbindgen.toml --output include/kore.h\n */"
include_guard = "KORE_H"
pragma_once = true
documentation = false
no_includes = true
sys_includes = ["complex.h"]
includes = ["stdint.h"]
after_includes = "typedef struct KoreKernel KoreKernel;"
[parse]
parse_deps = false
include = ["kore"]
[export]
include = [
"KoreStatus",
"KoreGrid",
"KoreConfig",
"KoreDiagnostics",
"KoreDiagnosticsSummary",
"kore_create",
"kore_destroy",
"kore_version",
"kore_diagnostics",
"kore_step",
"kore_step_n",
]
item_types = ["enums", "structs", "functions", "typedefs"]
renaming_overrides_prefixing = true
[export.rename]
"Complex64" = "double _Complex"