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
foreign import ccall unsafe "HsRead" c_Read :: ....
Should generate c_Read entry in a hask tags file. Note that c_Read can also be placed in a new line:
c_Read
foreign import ccall usafe "HsRead" c_Read :: ...
To add the actual c function HsRead one can run ctags -a **/*.c.
HsRead
ctags -a **/*.c
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Should generate
c_Read
entry in a hask tags file. Note thatc_Read
can also be placed in a new line:To add the actual c function
HsRead
one can runctags -a **/*.c
.The text was updated successfully, but these errors were encountered: