diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-08-14 09:57:17 -0400 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-08-14 09:57:17 -0400 |
commit | 69e9a3924cb5b41bb045c1e3e45fde5c1abf46b5 (patch) | |
tree | e73cc1aaa89121fbf48c4fef01ddf171de2dcbf1 | |
parent | abac70416024801c7936c6cdada504cdf2f2fe61 (diff) |
fix header for String_is_it_numeric
-rw-r--r-- | string_utils.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/string_utils.h b/string_utils.h index 0f946f5..33f9239 100644 --- a/string_utils.h +++ b/string_utils.h @@ -1,12 +1,12 @@ #ifndef STRING_UTILS_H_ #define STRING_UTILS_H_ -#define smallest_allowed_number 1.0e-18 +#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); -int String_is_it_numeric(char *parameter); - +gboolean String_is_it_numeric(char *parameter); #endif |