#ifndef fp_support_h
#define fp_support_h
#ifdef __GNUG__
extern "C" {
#endif
char * parse_ereal(char * s);
char * parse_real(char * s);
char * parse_float(char * s, int size_mantissa, int size_exponent);
char * DtoER (double v);
char * DtoR (double v);
#ifdef __GNUG__
}
#endif
#endif /* fp_support_h */