blob: 0f946f57a2acc48a150808f48d75a20f491fd23a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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
|