difftastic/vendored_parsers/tree-sitter-c/bindings/go/binding.go

13 lines
243 B
Go

package tree_sitter_c
// #cgo CFLAGS: -std=c11 -fPIC
// #include "../../src/parser.c"
import "C"
import "unsafe"
// Get the tree-sitter Language for this grammar.
func Language() unsafe.Pointer {
return unsafe.Pointer(C.tree_sitter_c())
}