| 9188 | } |
| 9189 | |
| 9190 | staticfn int |
| 9191 | count_apes(void) |
| 9192 | { |
| 9193 | int numapes = 0; |
| 9194 | struct autopickup_exception *ape = ga.apelist; |
| 9195 | |
| 9196 | while (ape) { |
| 9197 | numapes++; |
| 9198 | ape = ape->next; |
| 9199 | } |
| 9200 | |
| 9201 | return numapes; |
| 9202 | } |
| 9203 | |
| 9204 | DISABLE_WARNING_FORMAT_NONLITERAL |
| 9205 |
no outgoing calls
no test coverage detected