| 330 | } |
| 331 | |
| 332 | static void application_worker_destroy_default(void *context, |
| 333 | cbm_daemon_application_worker_t worker) { |
| 334 | (void)context; |
| 335 | cbm_index_worker_destroy((cbm_index_worker_handle_t *)worker); |
| 336 | } |
| 337 | |
| 338 | static uint32_t application_get_u32(const uint8_t *bytes) { |
| 339 | return ((uint32_t)bytes[0] << 24) | ((uint32_t)bytes[1] << 16) | ((uint32_t)bytes[2] << 8) | |
nothing calls this directly
no test coverage detected