Trying to write a code in ADS 1.2 but keep getting error C2304E: command expected but found 'unsigned'. Can someone help me? This is the code:

Code:
int main() {
	
	read();
	unsigned char *Img =& current_y[0][0]; //Error C2304E: command expected but found 'unsigned'
	int result = CLAHE (Img,352,288,0,227,2,2,256,3); //Error C2304E: command expected but found 'int'
	printf("%d",result);
...