follow this guidelines to sort a vector:
	
	sl_hsort ((void *) &_a_string_vector, 10, sl_strncmp);

this function call simply sort the first 10 elements of the vector 
"_a_string_vector". Note that was used as compare function sl_strncmp.
	


