Apply tcc_union() bindings from a header
Source:R/treesitter_helpers.R
tcc_treesitter_union_bindings.RdApply tcc_union() bindings from a header
Arguments
- ffi
A tcc_ffi object.
- header
Character scalar containing C declarations.
- ...
Passed to
tcc_treesitter_union_accessors().
Examples
if (FALSE) { # \dontrun{
header <- "union data { int i; double d; };"
ffi <- tcc_ffi()
ffi <- tcc_treesitter_union_bindings(ffi, header)
} # }