| 950 | /* Init map array to blanks */ |
| 951 | |
| 952 | static void |
| 953 | clear_map(void) |
| 954 | { |
| 955 | int x, y; |
| 956 | |
| 957 | for (x = 0; x < COLNO; x++) { |
| 958 | for (y = 0; y < ROWNO; y++) { |
| 959 | map[y][x].ch = ' '; |
| 960 | map[y][x].color = NO_COLOR; |
| 961 | map[y][x].attr = A_NORMAL; |
| 962 | map[y][x].unicode_representation = NULL; |
| 963 | } |
| 964 | } |
| 965 | } |
| 966 | |
| 967 | |
| 968 | /* Determine visible boundaries of map, and determine if it needs to be |
no outgoing calls
no test coverage detected