| 80 | } |
| 81 | |
| 82 | const cbm_agent_client_profile_t *cbm_agent_client_at(size_t index) { |
| 83 | return index < CBM_AGENT_CLIENT_COUNT ? &agent_profiles[index] : NULL; |
| 84 | } |
| 85 | |
| 86 | const cbm_agent_client_profile_t *cbm_agent_client_by_id(cbm_agent_client_id_t id) { |
| 87 | return (unsigned)id < CBM_AGENT_CLIENT_COUNT ? &agent_profiles[id] : NULL; |
no outgoing calls
no test coverage detected