// Write your solution for prac_q9.c here! #include #include int rotation_shift_amount(char *str1, char *str2); int main(void) { // This main function will not be used in testing. // You may write code for testing your functions here. printf("%d\n", rotation_shift_amount("hello", "llohe")); return 0; } int rotation_shift_amount(char *str1, char *str2) { // Add your implementation for `rotation_shift_amount` here and // change what is returned return 42; }