00001 /****************************************************************************** 00002 Copyright (c) 2006,2008,2009 Turku PET Centre 00003 00004 decpoint.h 00005 00006 Version history: 00007 2006-06-03 Vesa Oikonen 00008 First introduced. 00009 2008-07-11 VO 00010 Added the externs. 00011 2008-10-10 VO 00012 Added dec_nr(). 00013 2009-06-09 VO 00014 Added atof_with_check(). 00015 00016 00017 ******************************************************************************/ 00018 #ifndef _DECPOINT_H 00019 #define _DECPOINT_H 00020 /*****************************************************************************/ 00021 extern int dec_comma_is(char *str); 00022 extern double atof_dpi(char *str); 00023 extern int dec_nr(char *str); 00024 extern int atof_with_check(char *double_as_string, double *result_value); 00025 /*****************************************************************************/ 00026 #endif 00027