I've come across the following function declaration:
int function_name(uint8_t* input1, int input2)
What is the purpose of declaring a pointer in this way? Is it any different from usual:
uint8_t *input1
I've come across the following function declaration:
int function_name(uint8_t* input1, int input2)
What is the purpose of declaring a pointer in this way? Is it any different from usual:
uint8_t *input1