Returns 1 if the block at the turtle's position matches the argument
| 45 | |
| 46 | // Returns 1 if the block at the turtle's position matches the argument |
| 47 | inline int turtle_check(enum Block block) { |
| 48 | return block == turtle_get(); |
| 49 | } |
| 50 | |
| 51 | extern int turtle_get_char(void); |
| 52 |
nothing calls this directly
no outgoing calls
no test coverage detected