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
Just to get the function definitions so it can be used to call functions from an object or dylib without having to do that by hand.
#define FCN FCN int sumstuff(int a, int b); FCN void printstring(const char *str); ...
this way the user can later edit this define to be export, static, etc... and write the main at the bottom
The text was updated successfully, but these errors were encountered:
shouldn't this be easily done in r2? i mean seems useful, but i was wondering if it was more appropriate for r2 or r2dec
Sorry, something went wrong.
I would move the "#include" directives there too, instead of appearing on top of every function.
No branches or pull requests
Just to get the function definitions so it can be used to call functions from an object or dylib without having to do that by hand.
this way the user can later edit this define to be export, static, etc... and write the main at the bottom
The text was updated successfully, but these errors were encountered: