I looked and google'd everywhere, but I donβt know how I can use clang complete to show me the parameters of any function.
For example, the function is as follows:
int add(int a, int b) { int result = a + b; return result; }
And I want clang to fully show me the parameters of the add function. Therefore, it will display something like:
int a, int b
Obviously this will not look like that, but I want to see the parameters of the function, thanks.
source share