blob: abfb70c7c45a0b93c37acb823335f8447f2205a4 [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);