blob: c09000099e58c2670d3cbd56bb954fc5852cf371 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef STRING_UTILS_H_
#define STRING_UTILS_H_
#include <glib.h>
void Float_To_Text(int decimal_digits,float number_in, gchar** text_out);
gboolean String_is_it_numeric(char *parameter);
#endif
|