My Project
decpoint.h
Go to the documentation of this file.
1/******************************************************************************
2 Copyright (c) 2006,2008,2009 Turku PET Centre
3
4 decpoint.h
5
6 Version history:
7 2006-06-03 Vesa Oikonen
8 First introduced.
9 2008-07-11 VO
10 Added the externs.
11 2008-10-10 VO
12 Added dec_nr().
13 2009-06-09 VO
14 Added atof_with_check().
15
16
17******************************************************************************/
18#ifndef _DECPOINT_H
19#define _DECPOINT_H
20/*****************************************************************************/
21extern int dec_comma_is(char *str);
22extern double atof_dpi(char *str);
23extern int dec_nr(char *str);
24extern int atof_with_check(char *double_as_string, double *result_value);
25/*****************************************************************************/
26#endif
27
int atof_with_check(char *double_as_string, double *result_value)
Definition: decpoint.c:103
double atof_dpi(char *str)
Definition: decpoint.c:63
int dec_nr(char *str)
Definition: decpoint.c:79
int dec_comma_is(char *str)
Definition: decpoint.c:49