koala.cpp: In function 'int minValue(int, int)':
koala.cpp:12:22: error: too many arguments to function 'void playRound(int*, int*)'
12 | playRound(a, b, 0);
| ^
In file included from koala.cpp:1:
koala.h:4:6: note: declared here
4 | void playRound(int *B, int *R);
| ^~~~~~~~~
koala.cpp: In function 'int maxValue(int, int)':
koala.cpp:29:1: warning: no return statement in function returning non-void [-Wreturn-type]
29 | }
| ^
koala.cpp: In function 'int greaterValue(int, int)':
koala.cpp:34:1: warning: no return statement in function returning non-void [-Wreturn-type]
34 | }
| ^
koala.cpp: In function 'int minValue(int, int)':
koala.cpp:24:1: warning: control reaches end of non-void function [-Wreturn-type]
24 | }
| ^