C newbie here. Trying to figure out the error in my program.
Function prototype:
float* convolve(int (*)[10], int (*)[3], int *, int);
actual function:
float* convolve(int* ImdataPtr, int* KernelPtr, int* size, int sizeKernel)
How it's called in main:
float* output;
output = convolve(input,kernel,sizeIm,3);
Compile Error:
program.c:55:8: error: conflicting types for ‘convolve’
Help, please...