diff --git a/src/main/c/labyrinth.c b/src/main/c/labyrinth.c index 89227c3..d4cec1d 100644 --- a/src/main/c/labyrinth.c +++ b/src/main/c/labyrinth.c @@ -22,7 +22,7 @@ void turn_direction_right(Direction *direction){ } } -void move(unsigned short *x, unsigned short *y, Direction direction){ +void lab_move(unsigned short *x, unsigned short *y, Direction direction){ if (direction == N){ *x = 0; diff --git a/src/main/c/labyrinth.h b/src/main/c/labyrinth.h index 402e915..3bd9821 100644 --- a/src/main/c/labyrinth.h +++ b/src/main/c/labyrinth.h @@ -4,6 +4,6 @@ #include "global.h" void turn_direction_right(Direction *direction); -void move(unsigned short *x, unsigned short *y, Direction direction); +void lab_move(unsigned short *x, unsigned short *y, Direction direction); #endif // TEST_H diff --git a/src/test/c/test_labyrinth.c b/src/test/c/test_labyrinth.c index 5e63380..5233c20 100644 --- a/src/test/c/test_labyrinth.c +++ b/src/test/c/test_labyrinth.c @@ -75,7 +75,7 @@ void test_lab_move_from_1_1_N_expected_0_1(void) unsigned short y_expected = 1; /* act */ - move(&x, &y, direction); + lab_move(&x, &y, direction); /* assert */ TEST_ASSERT_TRUE(x == x_expected && y == y_expected);