| 4310 | } |
| 4311 | |
| 4312 | const char * |
| 4313 | directionname(int dir) |
| 4314 | { |
| 4315 | static NEARDATA const char *const dirnames[N_DIRS_Z] = { |
| 4316 | "west", "northwest", "north", "northeast", "east", |
| 4317 | "southeast", "south", "southwest", "down", "up", |
| 4318 | }; |
| 4319 | |
| 4320 | if (dir < 0 || dir >= N_DIRS_Z) |
| 4321 | return "invalid"; |
| 4322 | return dirnames[dir]; |
| 4323 | } |
| 4324 | |
| 4325 | int |
| 4326 | isok(coordxy x, coordxy y) |
no outgoing calls
no test coverage detected