/** * Test the first string is less than the second string. */ bool_t string_less(const string_t* cpstr_first, const string_t* cpstr_second) { return basic_string_less(cpstr_first, cpstr_second); }
void _type_less_basic_string(const void* cpv_first, const void* cpv_second, void* pv_output) { assert(cpv_first != NULL && cpv_second != NULL && pv_output != NULL); *(bool_t*)pv_output = basic_string_less((basic_string_t*)cpv_first, (basic_string_t*)cpv_second); }