mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 11:07:46 +00:00
13 lines
350 B
Go
13 lines
350 B
Go
package loader
|
|
|
|
/*
|
|
#include <clang-c/Index.h> // if this fails, install libclang-7-dev
|
|
|
|
// The gateway function
|
|
int tinygo_clang_visitor_cgo(CXCursor c, CXCursor parent, CXClientData client_data) {
|
|
int tinygo_clang_visitor(CXCursor c, CXCursor parent, CXClientData client_data);
|
|
return tinygo_clang_visitor(c, parent, client_data);
|
|
}
|
|
*/
|
|
import "C"
|