blob: 33f9239c39279d82529dc04424ed53bf7fc81e1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef STRING_UTILS_H_
#define STRING_UTILS_H_
#include <glib.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);
gboolean String_is_it_numeric(char *parameter);
#endif
|