I have the following arrays:
char* mask[9];
int hSobelMask[9] = {
-1, -2, -1,
0, 0, 0,
1, 2, 1};
I want to give a pointer on this array to a method like this:
int H = applyMask(&mask, &hSobelMask);
The signature of the applyMask function is the folowing:
int applyMask(char** mask[9], int* sobelMask[9]);
But I get the following compile warning:
demo.c: In function ‘customSobel’:
demo.c:232:7: warning: passing argument 1 of ‘applyMask’ from incompatible pointer type
demo.c:181:5: note: expected ‘char ***’ but argument is of type ‘char * (*)[9]’
demo.c:232:7: warning: passing argument 2 of ‘applyMask’ from incompatible pointer type
demo.c:181:5: note: expected ‘int **’ but argument is of type ‘int (*)[9]’
What does this warning mean, how do I get rid of it ?
You want to pass the pointers to these arrays? So you're probably looking for this:
int applyMask(char* (*mask)[9], int (*sobelMask)[9]);