Create rotate_column.c
This commit is contained in:
@@ -0,0 +1,9 @@
|
|||||||
|
int rotate_col (void)
|
||||||
|
{
|
||||||
|
int temp;
|
||||||
|
temp = tile_current[0];
|
||||||
|
tile_current[0] = tile_current[1];
|
||||||
|
tile_current[1] = tile_current[2];
|
||||||
|
tile_current[2] = temp;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user