There is a array of structures.
static field fields[xsize][ysize];
I want to change it in function
void MoveLeft(pacman *Pacman, field **fields,int **play)
But when I send it like this
MoveLeft(&Pacman,fields,play);
I've got an error.
field - structure
typedef struct
{
blossom blossoms;
wall walls;
}field;
where blossom & wall - another structures

**fieldsis a double pointer, since it's already of typefield.&Pacmanis a pointer, and C does not have reference types.