spif_cmp_t spif_tok_comp(spif_tok_t self, spif_tok_t other) { SPIF_OBJ_COMP_CHECK_NULL(self, other); SPIF_OBJ_COMP_CHECK_NULL(self->src, other->src); return spif_str_cmp(self->src, other->src); }
spif_cmp_t spif_str_comp(spif_str_t self, spif_str_t other) { return spif_str_cmp(self, other); }