00001 /***************************************************************************** 00002 * 00003 * $RCSfile: fp_8h-source.html,v $ 00004 * 00005 * Double to String/String to Double Conversion Routines 00006 * 00007 * This program is Copyright (C) 12/2003 Matthias Prinke 00008 * <matthias.prinke@surfeu.de> and covered by GNU's GPL. 00009 * In particular, this program is free software and comes WITHOUT 00010 * ANY WARRANTY. 00011 * 00012 * $Author: mp $ 00013 * 00014 * $Date: 2007-10-08 20:40:33 $ 00015 * 00016 * $Revision: 1.7.2.1 $ 00017 * 00018 * $Log: fp_8h-source.html,v $ 00018 * Revision 1.7.2.1 2007-10-08 20:40:33 mp 00018 * updated for gps4palm V0.9.5 beta 00018 * 00019 * Revision 1.3 2004-03-20 11:17:41 mp 00020 * changed float to double 00021 * 00022 * Revision 1.2 2004/03/06 15:53:41 mp 00023 * added parameter trailP to cvt_atof() 00024 * 00025 * Revision 1.1 2003/12/31 12:28:05 mp 00026 * initial version 00027 * 00028 * 00029 ****************************************************************************/ 00030 #ifndef FP_H 00031 #define FP_H 00032 00033 /* Prototypes to use for calling fp routines */ 00034 00035 double cvt_atof(char *strP, char **trailP, short *fracP); 00036 void format_number(double value, short frac, char *strP); 00037 00038 00039 #endif