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
When establishing rules, the position of function parameters will affect weggli's search, for example:
int bad(int limit,char *buf) { char buf[BUFSIZE]; for (int i = 0; i < limit; i++) { buf[i] = "A"; } }
Can be found by
_ $fn(_ $limit ,_*$buf) { for (_; $i<$limit; _) { $buf[$i]=_; } }
but
_ $fn(_*$buf,_ $limit ) { for (_; $i<$limit; _) { $buf[$i]=_; } }
Can not find. Does weggli provide an option to ignore the position of function parameters
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When establishing rules, the position of function parameters will affect weggli's search, for example:
Can be found by
but
Can not find.
Does weggli provide an option to ignore the position of function parameters
The text was updated successfully, but these errors were encountered: