#ifndef FUNCTION_H

#define FUNCTION_H

void hanoi(int n, char A, char B, char C);

#endif
