Beispiel #1
0
int ta_identity_compare(void *identity_object_a, void *identity_object_b)
{
  assert(identity_object_a);
  assert(identity_object_b);
  ta_identity_t *identity_a = identity_object_a;
  ta_identity_t *identity_b = identity_object_b;

  return xt_core_string_compare(identity_a->name, identity_b->name);
}
Beispiel #2
0
xt_core_bool_t xt_core_string_compare_equal(void *string_a_object,
    void *string_b_object)
{
  return (0 == xt_core_string_compare(string_a_object, string_b_object));
}