moves              73 modules/games/gui_sokoban.c static int  moves;
moves             124 modules/games/gui_sokoban.c         --moves;
moves             144 modules/games/gui_sokoban.c         ++moves;
moves             222 modules/games/gui_sokoban.c     moves = 0;
moves             362 modules/games/gui_sokoban.c             moves+=sokoban_move(0, -1);
moves             366 modules/games/gui_sokoban.c             moves+=sokoban_move(0, +1);
moves             370 modules/games/gui_sokoban.c             moves+=sokoban_move(-1, 0);
moves             374 modules/games/gui_sokoban.c             moves+=sokoban_move(+1, 0);
moves             378 modules/games/gui_sokoban.c             if (moves == 0) {
moves             446 modules/games/gui_sokoban.c         sprintf(str, "%s: %-6d", lang_str(LANG_SOKOBAN_TEXT_MOVES), moves);