| 317 | } |
| 318 | |
| 319 | uint8_t sumBytes(void* data, int length) { |
| 320 | uint8_t* p = (uint8_t*)data; |
| 321 | uint8_t s = 0; |
| 322 | while(length-- > 0) |
| 323 | s += *p++; |
| 324 | return s; |
| 325 | } |
| 326 | void display(bool a = false) { |
| 327 | } |
| 328 |
nothing calls this directly
no outgoing calls
no test coverage detected