blob: 9705b51fbbcb1cc785ebe2f507b6ddf2907cb768 [file] [log] [blame]
myNewValue = something[arrayNumber] * someOtherValue;
myNewValue = multidimentional[arrayNumber][anotherNumber] * someOtherValue;
myNewValue = noArrayVariableWorksFine * someOtherValue;
int func(int *thingy,
volatile int *arrayThingy[NUMBER]);
int func(int *thingy,
volatile int *arrayThingy[NUMBER][anotherNumber]);
int func(int *thingy,
volatile int *noArrayThingyWorksFine);