We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
They are present in the AST, but aren't exported.
~/p/wonk (main) > cat test.c extern int hello; ~/p/wonk (main) > bindgen --header test.c --package bla --scala --warning package bla import scala.scalanative.unsafe.* import scala.scalanative.unsigned.* import scalanative.libc.* import scalanative.* ~/p/wonk (main) > clang -Xclang -ast-dump -fsyntax-only test.c | grep hello `-VarDecl 0x15a0ddf98 <test.c:1:1, col:12> col:12 hello 'int' extern
This should generate a
@extern object variables: var hello: CInt = extern
The text was updated successfully, but these errors were encountered:
I need it
Sorry, something went wrong.
No branches or pull requests
They are present in the AST, but aren't exported.
This should generate a
The text was updated successfully, but these errors were encountered: