pub unsafe extern "C" fn aws_linked_hash_table_find(
    table: *mut aws_linked_hash_table,
    key: *const c_void,
    p_value: *mut *mut c_void
) -> c_int
Expand description

Finds element in the table by key. If found, AWS_OP_SUCCESS will be returned. If not found, AWS_OP_SUCCESS will be returned and *p_value will be NULL.

If any errors occur AWS_OP_ERR will be returned.