#ifndef STRING_UTILS_H_ #define STRING_UTILS_H_ #define smallest_allowed_number 1.0e-18 void Float_To_Text(int decimal_digits,float number_in, gchar** text_out); int String_trim_excess_digits(char *parameter); int String_is_it_numeric(char *parameter); #endif