summaryrefslogtreecommitdiffstats
path: root/vendored_parsers/tree-sitter-cmake/bindings/go/binding.go
blob: 01a2b9ee62bf80902390903c81b5e2e9f05bd5be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package tree_sitter_cmake

// #cgo CFLAGS: -std=c11 -fPIC
// #include "../../src/parser.c"
// // NOTE: if your language has an external scanner, add it here.
import "C"

import "unsafe"

// Get the tree-sitter Language for this grammar.
func Language() unsafe.Pointer {
	return unsafe.Pointer(C.tree_sitter_cmake())
}